package com.output;//Buffer 사용 입력
//버퍼 사용 장점 빠른 속도와 안전성

import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;

public class BufferedOutputStreamEx {
	public static void main(String[] args) {
		FileOutputStream fos = null;
		BufferedOutputStream bos = null;
		try{
			fos = new FileOutputStream("bufferOut.txt");
			bos = new BufferedOutputStream(fos);
			String str = "BufferedOutputStream Test 입니다.";

			//버퍼에 데이터를 저장하고
			//flush() 또는 close() 가 호출되면 데이터를 
			//버퍼에서 비우고 해당데이터를 파일에 저장
			bos.write(str.getBytes());
			//bos.flush();
			//플러시 하지 않으면 출력된 내용이 저장되지 않음

		}catch(IOException ie){
			ie.printStackTrace();
		}finally{
			try{
				//flush() 안해도 close()하면 내용 저장
				if(bos != null)bos.close();
				if(fos != null)fos.close();
			}catch(IOException ioe){
				ioe.printStackTrace();
			}
		}
	}
}


+ Recent posts