ObjectOutputStream 이 이상해요
서리서리
2023.04.01
초보가 objectoutputstream 클래스 스터디 중입니다.
import java.io.*;
public class outstr {
objectoutputstream oos = null;
outstr() throws classnotfoundexception, ioexception {
oos = new objectoutputstream(new fileoutputstream(c:\\t.txt));
}
public static void main(string[] args) throws classnotfoundexception, ioexception{
system.out.println(program start);
new outstr();
}
}
위와 같이 코드 작성하여 실행 하면 t.txt에 4바이트 짜리 파일이 생겨납니다.
write 같은 메소드도 호출하지 않았고 단지 new objectoutputstream ... 만 한것 뿐인데 파일에 이상한 내용이 들어가는 이유를 모르겠습니다.
도와주세요~