티스토리 뷰
file.close() should be outside of while loop otherwise java.io.EOFException occur.
You should place close() in finally.
public void readFile() throws ClassNotFoundException {
if (!dataFile.exists()) //생성한 파일이 존재하지 않으면 return
return;
ObjectInputStream in = null; //try 구문 바깥에 선언해줘서 다른 scope 에서도 사용가능하게 해준다!
try {
BufferedInputStream fileIn = new BufferedInputStream (new FileInputStream(dataFile));
//FileInputStream : 파일로부터 바이트단위의 데이터를 읽거나 파일에 바이트 데이터를 저장할 수 있다.
//BufferedInputStream : 처리할 데이터가 많으면 부하를 일으킬 수 있으므로 buffer 를 사용한다.
//FileReader : 문자단위로 데이터를 처리.
if (fileIn == null) {
throw new IOException("Can't find file.");
}
in = new ObjectInputStream(fileIn); //ObjectInputStream :
while (true) {
PhoneInfo info = (PhoneInfo) in.readObject(); // 어쨌든 Object를 읽어와야 되니까
if (info == null) //read til end of file (null)
break;
phoneInfo.add(info);
}
} catch (EOFException e) {
// e.printStackTrace(); -이것도 괜히 따라 넣었다가 에러남
} catch (Exception ex) {
} finally {
try {
if (in != null) { //존재하지도 않는 파일을 닫으려고하면 error가 발생한다. 그래서 null check를 꼭 해주어야 한다.
in.close(); //You should always close in a finally block.
}
} catch (IOException closeException) {
closeException.printStackTrace();
}
}
}
|
Reference
https://stackoverflow.com/questions/16646978/exception-with-objectinputstream-while-reading-and-reaching-the-end-of-the-file - so much helpful one
https://stackoverflow.com/questions/25294321/why-check-for-not-null-before-closing-fileoutputstream
https://stackoverflow.com/questions/32943897/java-ioexception-stream-closed
'JAVA' 카테고리의 다른 글
keySet() in Java (0) | 2019.07.23 |
---|---|
Map - getOrDefault(), putIfAbsent() in Java (0) | 2019.07.23 |
Error: could not find or load main class Main (0) | 2019.07.19 |
Serialization example code in java (0) | 2019.07.17 |
for each (0) | 2019.07.13 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- java
- javascript
- code refactoring
- equals()
- hackerrank javascript
- easy algorithm
- Javascript Algorithm
- easy javascript algorithm
- hackerrank javascript solution
- HashMap
- compareTo()
- hackerrank
- Object type casting
- substring()
- 프로그래머스 알고리즘문제
- 프로그래머스 알고리즘
- spring boot application
- 프로그래머스
- Collection Framework
- hackerrank solution
- math.max
- 알고리즘
- rest parameter
- algorithm
- HackerRank Algorithm
- ... in Javascript
- repeat()
- string class in java
- C++
- math.abs
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함