当filechannel.write成功并且我们能够将整个缓冲区内容写入文件通道时,我想确定是否所有内容都已刷新到磁盘。我将调用force(true),它可以抛出异常。我写入filechannel的数据会发生什么?什么都没有刷新到磁盘或可能刷新数据的某些部分?我该如何回滚操作?
public boolean flush(ByteBuffer[] buffers, long buffersRemaining)
{
try
{
FileChannel fileChannel = new RandomAccessFile(target, "rw").getChannel();
long writtenBytes = fileChannel.write(buffers);
//we think we have written all the data into filechannel
if(writtenBytes == buffersRemaining)
{
//we try to flush, but we get an exception
try
{
fileChannel.force(true);
fileChannel.close();
}
catch(IOException exception)
{
//???
return false;
}
}
}
catch(Exception exception)
{
//log exception
return false;
}
}
答案 0 :(得分:0)
如果你可以对它们做些什么,你应该只尝试处理异常。这是其中一个没有意义的情况。这不应该正常发生,只需记录异常并正常失败。