본문 바로가기
  • think normal
새로워지기/서른의 생활코딩

ex9) java.io.*

by 청춘만화 2012. 3. 6.



import java.io.*;
 
public class BufferedInputStreamTest {
public static void main( String[] args ) {
// InputStream 객체 생성
InputStream is = System.in;
// BufferedInputStream 객체 생성
BufferedInputStream bis = new BufferedInputStream( is );
// byte[] 배열 선언
byte[] b = new byte[10];
System.out.print( "Input Data : " );
try {
// 키보드로부터 입력을 받아 들임
int inputValue = bis.read( b );
System.out.println( "inputValue = " + inputValue );
System.out.println( "String = " + new String( b ));
// 스트림을 끊음
bis.close();
} catch ( IOException io ) {
System.out.println( io.toString() );
}
}
}

'새로워지기 > 서른의 생활코딩' 카테고리의 다른 글

ex11) java.io.*  (0) 2012.03.06
ex10) java.io.*  (0) 2012.03.06
ex8) java.io.*  (0) 2012.03.06
ex7) java.io.*  (0) 2012.03.06
ex6) java.io.*  (0) 2012.03.06

댓글