Java-io-bufferedoutputstream-flush

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

Java.io.BufferedOutputStream.flush()メソッド

説明

  • java.io.BufferedInputStream.flush()*メソッドは、バッファリングされた出力バイトをフラッシュして、基礎となる出力ストリームに書き込みます。

宣言

以下は* java.io.BufferedOutputStream.flush()*メソッドの宣言です。

public void flush()

パラメーター

NA

戻り値

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

例外

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

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

package com.finddevguides;

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

public class BufferedOutputStreamDemo {
   public static void main(String[] args) throws Exception {
      FileInputStream is = null;
      BufferedInputStream bis = null;
      ByteArrayOutputStream baos = null;
      BufferedOutputStream bos = null;

      try {
        //open input stream test.txt for reading purpose.
         is = new FileInputStream("c:/test.txt");

        //input stream is converted to buffered input stream
         bis = new BufferedInputStream(is);

        //creates a new byte array output stream
         baos = new ByteArrayOutputStream();

        //creates a new buffered output stream to write 'baos'
         bos = new BufferedOutputStream(baos);

         int value;

        //the file is read to the end
         while ((value = bis.read()) != -1) {
            bos.write(value);
         }

        //invokes flush to force bytes to be written out to baos
         bos.flush();

        //every byte read from baos
         for (byte b: baos.toByteArray()) {

           //converts byte to character
            char c = (char)b;
            System.out.print(c);
         }
      } catch(IOException e) {
        //if any IOException occurs
         e.printStackTrace();
      } finally {
        //releases any system resources associated with the stream
         if(is!=null)
            is.close();
         if(bis!=null)
            bis.close();
         if(baos!=null)
            baos.close();
         if(bos!=null)
            bos.close();
      }
   }
}

テキストファイル* c:/test.txt*があり、次の内容があるとします。 このファイルは、サンプルプログラムの入力として使用されます-

ABCDEFGHIJKLMNOPQRSTUVWXYZ

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

ABCDEFGHIJKLMNOPQRSTUVWXYZ