I need to write an entire object to a file and retrieve whenever I want. Suppose I want to write a object of a class "Student" which has attributes such as grades, name,roll etc.. And when I want to access and manipulate the attributes later whenever I need. Can you show me a way to accomplish it?
|
Use ObjectOutputStream.
Like so. |
|||
|
|
|
Try Serialization. |
|||
|
The simplest way to do what you're looking for is Object Serialization. Basically, you add an interface to your |
|||
|
|
|
Check out the Java Serialization API. |
|||
|
|
|
If you have simple JavaBeans, you could use java.beans.XMLEncoder/ XMLDecoder. Yet another way is to use JAXB. |
|||
|
|
|
The easiest way is to simply implement Java's Serializable interface: http://download.oracle.com/javase/1.4.2/docs/api/java/io/Serializable.html
You can then read/write using the readObject/writeObject methods. |
||||
|
|
|
These methods should help you, your student class has to implement serilizable, Use it like: Student s1 = new Student(); objectToFile("test.ser",s1); Student s2 = fileToObject("test.ser");
|
|||
|
|