Java.io.FilterOutputStream.write() 方法

描述

java.io.FilterOutputStream.write(byte[] b) 方法将 b.length 个字节写入此输出流。


声明

以下是 java.io.FilterOutputStream.write(byte[] b) 方法的声明 −

public void write(byte[] b)

参数

b − 要写入流的源缓冲区


返回值

此方法不返回任何值。


异常

IOException − 如果发生 I/O 错误。


示例

下面的例子展示了 java.io.FilterOutputStream.write(byte[] b) 方法的使用。

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);
                  
         // 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: A
Character read: B
Character read: C
Character read: D
Character read: E