gpt4 book ai didi

java - Java重写多个文件中的数据

转载 作者:行者123 更新时间:2023-12-02 11:39:15 24 4
gpt4 key购买 nike

经过大量研究,提出了使用正则表达式在文件中重写数据的代码,但是我对如何重新修改我的代码感到困惑,以便读取充满文本文件的目录中的数据看起来对于正则表达式模式并将其替换为我想要的文本。我是新手,任何帮助都将不胜感激,这是我迄今为止在每个文件的基础上工作的内容。

Path path = Paths.get("C:\\Users\\hoflerj\\Desktop\\After\\test.txt");
Charset charset = StandardCharsets.UTF_8;
String content = new String(Files.readAllBytes(path), charset);
content = content.replaceAll("2018(.+)", "XXXX");
Files.write(path, content.getBytes(charset));

几个月前我创建了一些代码,它读取文件名并查找模式并缩短名称长度,似乎我应该做类似的事情,但我无法将它们放在一起。该代码如下。

for (File file:filesInDir) {
//x++;
String name = file.getName();
String newName = name;
//String sameName = name;
if (name.contains("LABEL")){
newName = name.replaceAll("\\-2018(.+)\\d", "") ;
System.out.println(newName); // prints prints to file
String newPath = absolutePathOne + "\\" + newName;
file.renameTo(new File(newPath));
//Files.move(file.toPath(), Paths.get(newPath));
}
if (!name.contains("LABEL")){
newName = name.replaceAll("\\-2018(.+)", "");
System.out.println(newName); // prints prints to file
String newPath = absolutePathOne + "\\" + newName +".txt";
file.renameTo(new File(newPath));
//Files.move(file.toPath(), Paths.get(newPath));
}
}

请帮我把这些点连起来。同样,我的目标是循环遍历目录中的所有文件并找到模式并将该模式​​替换为我喜欢的文本。

最佳答案

Java 7 Files API 有许多有用的方法来实现您的目标。例如,有 Files.walk方法允许您迭代文件夹中的所有文件。要读取、写入和重命名文件,有 Files.readAllLines , Files.writeFiles.move分别方法。

所以你可以尝试这样的事情:

String folderPath = "/your/path";
String contentRegexp = "2018(.+)";
String contentReplacement = "XXXX";
String filenameRegexp = "-2018(.+)\\d";
String filenameReplacement = "";

// 1 is a maximum depth of traversal;
// you can use it if you have any subdirectories wich you want to process too
try (Stream<Path> paths = Files.walk(Paths.get(folderPath), 1)) {
// filtering only files
paths.filter(file -> Files.isRegularFile(file))
.forEach(file -> {
try {
//reading all lines and replacing content in each line
List<String> lines = Files.readAllLines(file)
.stream()
.map(s -> s.replaceAll(contentRegexp, contentReplacement))
.collect(Collectors.toList());
//writing lines back
Files.write(file, lines, StandardOpenOption.WRITE,
StandardOpenOption.TRUNCATE_EXISTING);
//renaming file
Files.move(file, file.resolveSibling(file.getFileName()
.toString()
.replaceAll(filenameRegexp, filenameReplacement)));
} catch (IOException e) {
e.printStackTrace();
}
});
}

但请注意正则表达式:2018(.+) 会将“2018”以及字符串中其后的所有内容替换为“XXXX”。

关于java - Java重写多个文件中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48696623/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com