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


Java FileDescriptor sync()用法及代碼示例


FileDescriptor類sync()方法

  • sync() 方法可在java.io包。
  • sync() 方法用於將所有係統緩衝區與底層設備同步。
  • sync() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • sync() 方法可能會在同步時拋出異常。
    同步失敗異常:當緩衝區無法刷新或係統無法確保所有緩衝區與底層設備同步時,可能會拋出此異常。

用法:

    public void sync();

參數:

  • 它不接受任何參數。

返回值:

該方法的返回類型是void,它什麽都不返回。

例:

// Java program to demonstrate the example 
// of void sync() method of FileDescriptor

import java.io.*;

public class SyncOfFD {
 public static void main(String[] args) throws Exception {
  FileOutputStream os_stm = null;

  try {
   // Instantiates FileOutputStream 
   os_stm = new FileOutputStream("D:\\includehelp.txt");

   // By using getFD() method is to get
   // the file descriptor
   FileDescriptor file_des = os_stm.getFD();

   // By using write() method is to
   // write corresponding char 'A' to
   // the output stream os_stm 
   os_stm.write(65);

   // By using sync() method is to
   // sync the data to the file
   file_des.sync();
   System.out.println("Sync() executed ");
  } catch (Exception ex) {
   System.out.println(ex.toString());
  } finally {
   // with the help of this block is to
   // free all necessary resources linked
   // with the stream
   if (os_stm != null) {
    os_stm.close();
   }
  }
 }
}

輸出

Sync() executed


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java FileDescriptor sync() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。