当前位置: 首页>>代码示例>>Java>>正文


Java AtomicFileOutputStream.close方法代码示例

本文整理汇总了Java中org.apache.zookeeper.common.AtomicFileOutputStream.close方法的典型用法代码示例。如果您正苦于以下问题:Java AtomicFileOutputStream.close方法的具体用法?Java AtomicFileOutputStream.close怎么用?Java AtomicFileOutputStream.close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.zookeeper.common.AtomicFileOutputStream的用法示例。


在下文中一共展示了AtomicFileOutputStream.close方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: writeLongToFile

import org.apache.zookeeper.common.AtomicFileOutputStream; //导入方法依赖的package包/类
/**
* Write a long value to disk atomically. Either succeeds or an exception
* is thrown.
* @param name file name to write the long to
* @param value the long value to write to the named file
* @throws IOException if the file cannot be written atomically
*/
  private void writeLongToFile(String name, long value) throws IOException {
      File file = new File(logFactory.getSnapDir(), name);
      AtomicFileOutputStream out = new AtomicFileOutputStream(file);
      BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(out));
      boolean aborted = false;
      try {
          bw.write(Long.toString(value));
          bw.flush();
          
          out.flush();
      } catch (IOException e) {
          LOG.error("Failed to write new file " + file, e);
          // worst case here the tmp file/resources(fd) are not cleaned up
          //   and the caller will be notified (IOException)
          aborted = true;
          out.abort();
          throw e;
      } finally {
          if (!aborted) {
              // if the close operation (rename) fails we'll get notified.
              // worst case the tmp file may still exist
              out.close();
          }
      }
  }
 
开发者ID:l294265421,项目名称:ZooKeeper,代码行数:33,代码来源:QuorumPeer.java

示例2: writeLongToFile

import org.apache.zookeeper.common.AtomicFileOutputStream; //导入方法依赖的package包/类
static void writeLongToFile(File file, long value) throws IOException {
    AtomicFileOutputStream out = new AtomicFileOutputStream(file);
    BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(out));
    try {
        bw.write(Long.toString(value));
        bw.flush();
        out.flush();
        out.close();
    } catch (IOException e) {
        LOG.error("Failed to write new file " + file, e);
        out.abort();
        throw e;
    }
}
 
开发者ID:l294265421,项目名称:ZooKeeper,代码行数:15,代码来源:QuorumPeerMainTest.java


注:本文中的org.apache.zookeeper.common.AtomicFileOutputStream.close方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。