gpt4 book ai didi

java-8 - 使用 Files.lines 修改文件

转载 作者:太空宇宙 更新时间:2023-11-04 13:55:56 25 4
gpt4 key购买 nike

我想读入一个文件并用新文本替换一些文本。使用 asm 和 int 21h 会很简单,但我想使用新的 java 8 流。

    Files.write(outf.toPath(), 
(Iterable<String>)Files.lines(inf)::iterator,
CREATE, WRITE, TRUNCATE_EXISTING);

我想要一个lines.replace("/*replace me*/","new Code()\n");。新行是因为我想测试在某处插入代码块。

这是一个播放示例,它不能按我想要的方式工作,但可以编译。我只需要一种方法来拦截迭代器中的行,并用代码块替换某些短语。

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import static java.nio.file.StandardOpenOption.*;
import java.util.Arrays;
import java.util.stream.Stream;

public class FileStreamTest {

public static void main(String[] args) {
String[] ss = new String[]{"hi","pls","help","me"};
Stream<String> stream = Arrays.stream(ss);

try {
Files.write(Paths.get("tmp.txt"),
(Iterable<String>)stream::iterator,
CREATE, WRITE, TRUNCATE_EXISTING);
} catch (IOException ex) {}

//// I'd like to hook this next part into Files.write part./////
//reset stream
stream = Arrays.stream(ss);
Iterable<String> it = stream::iterator;
//I'd like to replace some text before writing to the file
for (String s : it){
System.out.println(s.replace("me", "my\nreal\nname"));
}
}

}

编辑:我已经做到了这一点并且它有效。我尝试使用过滤器,也许这并不是真的必要。

        Files.write(Paths.get("tmp.txt"),
(Iterable<String>)(stream.map((s) -> {
return s.replace("me", "my\nreal\nname");
}))::iterator,
CREATE, WRITE, TRUNCATE_EXISTING);

最佳答案

Files.write(..., Iterable, ...) 方法在这里看起来很诱人,但是将 Stream 转换为 Iterable 会使这变得很麻烦。它还从 Iterable 中“拉”,这有点奇怪。如果文件写入方法可以用作流的终端操作(例如 forEach 之类的内容),那就更有意义了。

不幸的是,大多数编写的内容都会抛出 IOException,这是 forEach 所期望的 Consumer 功能接口(interface)所不允许的。但 PrintWriter 不同。至少,它的编写方法不会抛出检查异常,尽管打开一个异常仍然会抛出IOException。以下是它的使用方法。

Stream<String> stream = ... ;
try (PrintWriter pw = new PrintWriter("output.txt", "UTF-8")) {
stream.map(s -> s.replaceAll("foo", "bar"))
.forEachOrdered(pw::println);
}

请注意 forEachOrdered 的使用,它按照读取的顺序打印输出行,这可能就是您想要的!

如果您从输入文件中读取行,修改它们,然后将它们写入输出文件,则将这两个文件放在同一个 try-with-resources 语句中是合理的:

try (Stream<String> input = Files.lines(Paths.get("input.txt"));
PrintWriter output = new PrintWriter("output.txt", "UTF-8"))
{
input.map(s -> s.replaceAll("foo", "bar"))
.forEachOrdered(output::println);
}

关于java-8 - 使用 Files.lines 修改文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29826076/

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