Why does the following code throw a NotSerializableException? It says that ser class is Not Serializable,but ser implements serializable interface,so why is it not serializable?
Paulo Silveira
Ranch Hand
Joined: May 21, 2002
Posts: 32
posted
0
nice question
Roy Ben Ami
Ranch Hand
Joined: Jan 13, 2002
Posts: 732
posted
0
this compiles and runs fine for me with no exceptions! whats jdk are you using? just as an after thought though you should always close the streams as a good habit. so close the output stream before trying to read from it and then close the input stream too.
Gautam Sewani
Ranch Hand
Joined: Apr 19, 2002
Posts: 93
posted
0
I m using jdk1.2 What version r u using?
Roy Ben Ami
Ranch Hand
Joined: Jan 13, 2002
Posts: 732
posted
0
im using 1.4 ... :roll: weird. tried searching the bug database in sun but they dont have a bug like you mentioned. however, there are quite a few bugs there related to serialize objects in 1.2, maybe it is just one of them. try closing the streams like i mentioned and maybe it will help.
Anonymous
Ranch Hand
Joined: Nov 22, 2008
Posts: 18944
posted
0
I tried it with 1.4 and it works
Gautam Sewani
Ranch Hand
Joined: Apr 19, 2002
Posts: 93
posted
0
Can anyone please try this on jdk1.2 and see wether this works or not?