Posts Tagged ‘java file reading writing’
Java Object Serialization by using Java I/O Streams
Monday, August 4, 2008 12:12 No CommentsThe task is to store different objects of classes in a physically located file on hard disk. For this to store objects and their states (including the values of their data members) we have to make those classes serializeable. Use Standard Java I/O streams FileOutputStream, ObjectOutputStream to write/store to file and FileInputStream, ObjectInputStream streams to [...]
