如果Filechannel.force(true)抛出异常,写入的数据会发生什么?

时间:2014-07-29 09:26:11

标签: java nio filechannel

调用filechannel.force并抛出异常会发生什么?

当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;
    }
}

1 个答案:

答案 0 :(得分:0)

如果你可以对它们做些什么,你应该只尝试处理异常。这是其中一个没有意义的情况。这不应该正常发生,只需记录异常并正常失败。

相关问题
最新问题