FileReader: 문자 기반 스트림 / 텍스트 파일을 프로그램으로 읽어들일 때 사용. 문자 단위로 읽으므로 텍스트만 읽을 수 있다.
public class FileIOTest03 {
public static void main(String[] args) {
// 문자 기반의 스트림을 이용한 파일 내용 읽어와 출력하기
try {
FileReader fr = new FileReader("d:/d_other/test.txt");
int c; //읽어올 데이터 저장할 변수
while( (c=fr.read()) !=-1){
System.out.print( (char)c );
}
fr.close();
} catch (IOException e) {
// TODO: handle exception
}
}
}