【♣부트 캠프♣】/▷부캠- 에러 모음
[2024.0613-18일차]1.Exception in thread "main" java.io.IOException: Stream Closed at java.base/java.io.FileInputStream.read0(Native Method) at java.base/java.io.FileInputStream.read(FileInputStream.java:228) at com.day18.Test7.main(Test7.java:42)2. fileinpu
아딜렛
2024. 6. 13. 06:02
작금의 문제상황
FileInputStream fis = new FileInputStream("c:\\doc\\test.txt");//fis에 대입
int data;//데이터 정수로 선언
while((data=fis.read())!=-1) {
System.out.write(data);
System.out.flush();
}
fis.close();
다~~~ 깨짐
인코딩도 utf-8==> ansi로 바꿨다고!!!!! 뭘 잘못한거지??
Exception in thread "main" java.io.IOException: Stream Closed
at java.base/java.io.FileInputStream.read0(Native Method)
at java.base/java.io.FileInputStream.read(FileInputStream.java:228)
at com.day18.Test7.main(Test7.java:42)
public int read() throws IOException {
return read0();
}
//에러코드에서 이거 나옴
▶에러해결
