Posted By:
Anonymous
Posted On:
Friday, December 17, 2004 02:12 AM
I assume you mean "file which stores serialized objects" - there is no "serializable file" in Java.
There is no standard extension for files containing serilaized Java objects - you can write your objects to files as you please. A "somewhat" standardized extension is .ser
Also, where you place a file with serialized objects is up to you: When you call the FileOutputStream constructor (or some other means of creating a file of bytes to store objects), you tell the program where to put it, as with any other file.
Regards
Harald M.