writing Java Objects to a file
Hi,
I had been using files and Java IO API for a time but in my new implementation I want to write few Java objects in to a file and fetch them as "same objects" in to a datastructure (such as an array or map) when I start my application again.
I was wondering if there is any mechanism that I can directly write an object "altogether" and read them as same objects but not as bytes and use it in my application? Any suggestions would be quite helpful :) Thanks in advance.
//NisE

