Java-io-bytearrayinputstream-close

提供:Dev Guides
移動先:案内検索

Java.io.ByteArrayInputStream.close()メソッド

説明

  • java.io.ByteArrayInputStream.close()*メソッドは、ストリームに関連付けられているすべてのシステムリソースを解放します。 このクラスのメソッドは、I/Oエラーを生成せずにclose()呼び出しの後に呼び出すことができます。

宣言

以下は* java.io.ByteArrayInputStream.close()*メソッドの宣言です-

public void close()

パラメーター

NA

戻り値

このメソッドは値を返しません。

例外

*IOException* -I/Oエラーが発生した場合

次の例は、java.io.ByteArrayInputStream.close()メソッドの使用方法を示しています。

package com.finddevguides;

import java.io.ByteArrayInputStream;
import java.io.IOException;

public class ByteArrayInputStreamDemo {
   public static void main(String[] args) throws IOException {
      byte[] buf = {65, 66, 67, 68, 69};
      ByteArrayInputStream bais = null;

      try {
        //create new byte array input stream
         bais = new ByteArrayInputStream(buf);

        //close invoked before read() and available() invocations
         bais.close();

         int count = 0;

        //read till the end of the stream
         while((count = bais.available())>0) {

           //convert byte to character
            char c = (char)bais.read();

           //print number of bytes available
            System.out.print("available byte(s) : "+ count);

           //print characters read form the byte array
            System.out.println(" & byte read : "+c);
         }

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

上記のプログラムをコンパイルして実行すると、次の結果が生成されます-

available byte(s) : 5 & byte read : A
available byte(s) : 4 & byte read : B
available byte(s) : 3 & byte read : C
available byte(s) : 2 & byte read : D
available byte(s) : 1 & byte read : E