자바 콘 솔 입 출력 흐름 테스트

콘 솔 의 입 출력 흐름 을 테스트 하고 스 트림 및 스 트림 의 패 키 징 개념 을 강화 하 며 스 트림 의 패 키 징 을 연습 하기 위해 간단 한 자바 프로그램 을 썼 습 니 다.
import java.io.*;

public class text {
	public static void main(String[] args) {
		InputStreamReader stdin=new InputStreamReader(System.in);//System.in    ,          stdin
		BufferedReader bufin=new BufferedReader(stdin);//              bufin
		while(true){
			System.out.println("   :");
			String str;
			try {
				str = bufin.readLine();//         ,      str 
				System.out.println("     :"+str);//              
			} catch (IOException e) {
				e.printStackTrace();
			}finally{
				System.out.println("  :kobe");//       ,                   finally    
			}
		}
		
	}

}

좋은 웹페이지 즐겨찾기