Java.io.BufferedOutputStream.Write() 方法



描述

java.io.BufferedOutputStream.Write(int) 方法將位元組寫入輸出流。

宣告

以下是 java.io.BufferedOutputStream.write(int b) 方法的宣告。

public void write(int b)

引數

b - 要寫入輸出流的位元組。

返回值

此方法不返回值。

異常

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

示例

以下示例演示了 java.io.BufferedOutputStream.write(int b) 方法的使用。

package com.tutorialspoint;

import java.io.BufferedOutputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;

public class BufferedOutputStreamDemo {
   public static void main(String[] args) throws Exception {
      ByteArrayOutputStream baos = null;
      BufferedOutputStream bos = null;
		
      try {
         // create new ByteArrayOutputStream
         baos = new ByteArrayOutputStream();

         // create new BufferedOutputStream with baos
         bos = new BufferedOutputStream(baos);
			
         // assign integer
         int b = 87;

         // write to stream
         bos.write(b);

         // force the byte to be written to baos
         bos.flush();
			
         // convert ByteArrayOutputStream to bytes
         byte[] bytes = baos.toByteArray();	

         // prints the byte
         System.out.println(bytes[0]);
         
      } catch(IOException e) {
         // if I/O error occurs.
         e.printStackTrace();
      } finally {
         // releases any system resources associated with the stream
         if(baos!=null)
            baos.close();
         if(bos!=null)
            bos.close();
      }
   }
}

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

87
java_io_bufferedoutputstream.htm
廣告

© . All rights reserved.