serialization - How to handle Java.io.NotSerializableException -


i have created java program works java i/o. have implemented serializable interface, still cause java.io.notserializableexception on following part of code while trying write objects file:

         oos.writeobject(ep); 

how possible while implementing serializable? should works besides implementing interface?

usually means, object object trying serialize holds reference not serializable. if post code , exceptions stacktrace lot easier tell.


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -