Advertisement
|
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002.
If you wish to participate in discussions, please visit the new
Artima Forums.
Message:
reading from a appended file using ObjectInputStream
Posted by sagar adhikari on December 26, 2000 at 10:08 AM
hi, I have opened a file using ObjectOutputStream out=new ObjectOutputStream(new FileOutputStream("filename",true)); now my problem is that when i try to read the file i get an error that java.io.StreamCorruptedException: Type code out of range, is -84 what should i do? i have used ObjectInputStream out=new ObjectInputStream(new FileInputStream("filename")); for reading . where am i going wrong. Please suggest me.
Replies:
|