I have a desktop application which saves an object (where the class implements Serializable interface in J2SE) to a file.
I wish to do the same for my mobile application but I have not been able to find an equivalent interface for J2ME.
I need a way such that the object that has been saved by either the desktop application (J2SE) or the mobile application (J2ME) can be recovered by each other.
Short of implementing my own interface, is there a solution to my problem?
Thanks in advance.

Reply With Quote

