io 파일 읽기 일반 형식
507 단어 JAVA 베이스.
public static void main(String[] args) throws IOException
{
InputStream is = new FileInputStream("D:\\workspace\\files\\test.txt");
byte[] buff = new byte[1024];
//length:
int length;
while (-1 != (length = is.read(buff, 0, 1024)))
{
String str = new String(buff, 0, length);
System.out.println(str);
}
is.close();
}