Java FileChannel 大于其内容
Java FileChannel bigger than its content
我正在创建一个 fileChannel 来执行内存映射写入。此 fileChannel 的大小为 100 字节。我只写了 80 个字节。因此,当我稍后从该文件中读取时,它会在 and 中添加 5 个“0”。有没有办法设置大小或获取写入文件的大小?
非常感谢!!
public FileChannel create(String randomFile){
// create file output stream
RandomAccessFile raf;
FileChannel fc = null;
try {
raf = new RandomAccessFile(randomFile, "rw");
fc = raf.getChannel();
System.out.println("fc.size() "+ fc.size());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return fc;
}
我想 setLength()
就是您要找的。 Java doc.
改用这个:
final Path path = Paths.get("thefile");
final FileChannel fc = FileChannel.open(path, StandardOpenOption.WRITE,
StandardOpenOption.READ);
// then later:
fc.truncate(80L);
当然,别忘了.close()
。理想情况下,您应该使用 try-with-resources 语句打开您的频道。
我正在创建一个 fileChannel 来执行内存映射写入。此 fileChannel 的大小为 100 字节。我只写了 80 个字节。因此,当我稍后从该文件中读取时,它会在 and 中添加 5 个“0”。有没有办法设置大小或获取写入文件的大小?
非常感谢!!
public FileChannel create(String randomFile){
// create file output stream
RandomAccessFile raf;
FileChannel fc = null;
try {
raf = new RandomAccessFile(randomFile, "rw");
fc = raf.getChannel();
System.out.println("fc.size() "+ fc.size());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return fc;
}
我想 setLength()
就是您要找的。 Java doc.
改用这个:
final Path path = Paths.get("thefile");
final FileChannel fc = FileChannel.open(path, StandardOpenOption.WRITE,
StandardOpenOption.READ);
// then later:
fc.truncate(80L);
当然,别忘了.close()
。理想情况下,您应该使用 try-with-resources 语句打开您的频道。