当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.io.File.sync()用法及代码示例



描述

这个java.io.File.sync()方法强制所有系统缓冲区与底层设备同步。

声明

以下是声明java.io.File.sync()方法 -

public void sync()

参数

NA

返回值

该方法不返回任何值。

异常

SyncFailedException− 当缓冲区无法刷新或系统无法保证所有缓冲区与物理介质同步时抛出此异常。

示例

下面的例子展示了 java.io.File.sync() 方法的用法。

package com.tutorialspoint;

import java.io.FileDescriptor;
import java.io.FileInputStream;
import java.io.FileOutputStream;

public class FileDemo {
   public static void main(String[] args) {      
      FileInputStream fis = null;
      FileOutputStream fos = null;
      FileDescriptor fd = null;
      byte[] b = {65,66,67,68,69,70};
      
      try {
         fos = new FileOutputStream("c:/java test.txt");
         fd = fos.getFD();
         
         // writes byte to file output stream
         fos.write(b);
         
         // flush data from the stream into the buffer
         fos.flush();
         
         // confirms data to be written to the disk
         fd.sync();
         
         // create input stream
         fis = new FileInputStream("c:/java test.txt");
         
         int value = 0;
         
         // for every available bytes
         while((value = fis.read())!= -1) {
         
            // converts bytes to char
            char c = (char)value;
            
            // prints char
            System.out.print(c);
         }
         
         // print
         System.out.print("\nSync() successfully executed!!");
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      } finally {
         // releases system resources
         if(fos!=null)
            fos.close();
         if(fis!=null)
            fis.close();
      }
   }
}

让我们编译并运行上面的程序,这将产生以下结果 -

ABCDEF
Sync() successfully executed!!

相关用法


注:本文由纯净天空筛选整理自 Java.io.File.sync() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。