Sponsored Link •
|
Advertisement
|
Advertisement
|
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.
Message:
hi, ObjectInputStream out=new ObjectInputStream(new i get an error that > > You haven't really provided enough info but are you remembering to close the file after writing with out.close() to make sure the buffer is flushed (all data transferred from memory to file). > > If I recall correctly, flushing the buffer is off by default when serializing objects (one of the ObjectOutputStream constructors takes a boolean for this - check the java.io doc). > > Hope that helps > > Richard
Replies: |
Sponsored Links
|