Java.io.ByteArrayOutputStream.write()方法範例


java.io.ByteArrayOutputStream.write(int b) 方法將指定位元組寫入此流。

宣告

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

public void write(int b)

引數

  • b -- 指定的位元組在0-255的整數範圍

返回值

此方法不返回任何值。

異常

  • NA

例子

下面的範例演示java.io.ByteArrayOutputStream.write(int b)方法的用法。

package com.yiibai;

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

public class ByteArrayOutputStreamDemo {
   public static void main(String[] args) throws IOException {
      
      String str = "";
      ByteArrayOutputStream baos = null;
      
      try{

         // create new ByteArrayOutputStream
         baos = new ByteArrayOutputStream();
      
         // write byte array to the output stream
         baos.write(55);
         
         // converts the byte to the default charset value
         str = baos.toString();
         
         // prints the string
         System.out.println(str);
         
      }catch(Exception e){

         // if I/O error occurs
         e.printStackTrace();
      }finally{
         if(baos!=null)
            baos.close();
      }   
   }
}

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

7