當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。