gpt4 book ai didi

java - Vertx 追加到文件

转载 作者:行者123 更新时间:2023-12-01 07:01:24 27 4
gpt4 key购买 nike

如何将数据追加到文件末尾(或开头)?我尝试使用

list.forEach(str -> {
vertx.fileSystem().writeFile(path,
Buffer.buffer(str), result -> {
if (result.succeeded()) {
LOGGER.debug(str + " appended");
} else {
LOGGER.error(str + " not appended");
}
});
});

但它只写最后一项。

最佳答案

每次连续调用 writeFile 时,您都会覆盖数据,这就是为什么在文件中您只能看到最后一项。要将每个数据项附加到文件中,请使用 OpenOptions#setAppend(true) 打开文件。 :

vertx.fileSystem().open(path, new OpenOptions().setAppend(true), ar -> {
if (ar.succeeded()) {
AsyncFile ws = ar.result();
list.forEach(str -> {
Buffer chunk = Buffer.buffer(str);
ws.write(chunk);
});
} else {
System.err.println("Could not open file");
}
});

关于java - Vertx 追加到文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47080980/

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