작성자 | 기라졸 | ||
---|---|---|---|
작성일 | 2018-10-16 21:31:11 KST | 조회 | 212 |
제목 |
자바 파일입출력으로 인해 고난을 겪고있음
|
성적입출력하는 함수인데
public static void main(){
Grade tGr = new Grade();
tGr.get();
//Grade 객체 정보 입력
FileOutput(tGr)
...
}
static void FileOutput(Grade Gr) }
ObjectOutputStream out = null;
try{
out = ObjectOutputStream(new FileOutputStream("data.dat"));
out.writeObject(Gr);
}
catch (IOException e) {
}
try {
out.close();
}catch(Exception e){
}
}
IO에러가 뜨는데 writeObject(Gr)이 문제인건 알겠는데 왜 안돌아가는건지 모르겠네요.. 혹시나해서 input도 해봣는데 역시 마찬가지로 IO에러가 나오네요 도와주세요 능력자맨!
|
||
|
|
||
|
|
||
|
|
||
|
© PlayXP Inc. All Rights Reserved.