Java.io.FilterOutputStream.write() 方法



描述

java.io.FilterOutputStream.write(byte[] b, int off, int len) 方法將從指定位元組陣列中從偏移量 off 開始的 len 個位元組寫入此輸出流。

宣告

以下是 java.io.FilterOutputStream.write(byte[] b, int off, int len) 方法的宣告:

public void write(byte[] b, int off, int len)

引數

  • b - 要寫入流的源緩衝區

  • off - 資料的起始偏移量

  • len - 要寫入的位元組數

返回值

此方法不返回值。

異常

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

示例

以下示例演示了 java.io.FilterOutputStream.write(byte[] b, int off, int len) 方法的用法。

package com.tutorialspoint;

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

public class FilterOutputStreamDemo {
   public static void main(String[] args) throws Exception {
      OutputStream os = null; 
      FilterOutputStream fos = null;
      FileInputStream fis = null;
      byte[] buffer = {65, 66, 67, 68, 69};
      int i = 0;
      char c;
      
      try {
         // create output streams
         os = new FileOutputStream("C://test.txt");
         fos = new FilterOutputStream(os);

         // writes buffer to the output stream
         fos.write(buffer, 2, 3);
                  
         // forces byte contents to written out to the stream
         fos.flush();
         
         // create input streams
         fis = new FileInputStream("C://test.txt");
         
         while((i = fis.read())!=-1) {
         
            // converts integer to the character
            c = (char)i;
            
            // prints
            System.out.println("Character read: "+c);
         }
         
      } catch(IOException e) {
         // if any I/O error occurs
         System.out.print("Close() is invoked prior to write()");
      } finally {
         // releases any system resources associated with the stream
         if(os!=null)
            os.close();
         if(fos!=null)
            fos.close();
      }
   }
}

讓我們編譯並執行以上程式,這將產生以下結果:

Character read: C
Character read: D
Character read: E
java_io_filteroutputstream.htm
廣告

© . All rights reserved.