gpt4 book ai didi

java - FileChannel - 在 eof 处附加字节缓冲区?

转载 作者:行者123 更新时间:2023-12-02 03:39:16 25 4
gpt4 key购买 nike

我想知道是否可以添加使用文件 channel 的位置方法将字节缓冲区移动到文件末尾。

我读到需要打开文件输出流带有附加标志

ByteBuffer byteBuffer = ...;
FileOutputStream fileOutputStream = new FileOutputStream("path/to/file", true);
FileChannel channel = fileOutputStream.getChannel();

channel.write(bytebuffer);
channel.force(true);
channel.close();

但是不应该可以附加缓冲区吗通过修改 channel 的位置。

"The size of the file increases when bytes are written beyond its current size"

ByteBuffer byteBuffer = ...;
FileOutputStream fileOutputStream = new FileOutputStream("path/to/file");
FileChannel channel = fileOutputStream.getChannel();

channel.position(channel.size()).write(bytebuffer);
channel.force(true);

自文件发布以来,我将不胜感激一些解释被覆盖。

最佳答案

在第二个示例中,文件被覆盖,因为您没有指定值为 trueappend 参数。之后,将其定位在 EOF 处只是将其定位为零。

关于java - FileChannel - 在 eof 处附加字节缓冲区?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37025634/

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