位置:首頁 > Java技術 > Java.io包 > Java.io.FileOutputStream.write()方法實例

Java.io.FileOutputStream.write()方法實例

java.io.FileOutputStream.write(int b) 方法寫入一個字節到這個文件輸出流。

聲明

以下是java.io.FileOutputStream.write(int b)方法的聲明:

public void write(int b)

參數

  • b -- the byte to be written.

返回值

此方法不返回任何值。

異常

  • IOException - 如果發生任何I/ O錯誤。

例子

下麵的示例演示java.io.FileOutputStream.write(int b) 方法的用法。

package com.yiibai;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;

public class FileOutputStreamDemo {
   public static void main(String[] args) throws IOException {
      
      FileOutputStream fos = null;
      FileInputStream fis = null;
      byte b = 66;
      int i=0;
      char c;
      
      try{
         // create new file output stream
         fos=new FileOutputStream("C://test.txt");
         
         // writes byte to the output stream
         fos.write(b);
         
         // flushes the content to the underlying stream
         fos.flush();
         
         // create new file input stream
         fis = new FileInputStream("C://test.txt");
         
         // read till the end of the file
         while((i=fis.read())!=-1)
         {
            // convert integer to character
            c=(char)i;
            
            // prints
            System.out.print(c);
         }
      }catch(Exception ex){
         // if an error occurs
         ex.printStackTrace();
      }finally{
         
         // closes and releases system resources from stream
         if(fos!=null)
            fos.close();
         if(fis!=null)
            fis.close();
      }
   }
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

B