Home Help Java O Java ObjectOutputStream
Questions:Ask|Latest



Java ObjectOutputStream
Posted on: November 16, 2009 By Deepak Kumar
An ObjectOutputStream is inherited from the OutputStream class that is underlying in the java.io package.

Java ObjectOutputStream

     

An ObjectOutputStream is inherited from the OutputStream class that is underlying in the java.io package. This class is used to write the primitive data types and also saves Java objects to an OutputStream that can be read by the ObjectInputStream. This stream performs "marshaling", i.e. it translates Java primitive and object types into a binary format, and vice versa. If you want persistent storage of objects then it can be accomplished by using a file I/O stream with the ObjectOutputStream through the Serialization.

 

Read more at

http:/www.roseindia.net/java/example/java/io/SerializingObject.shtml

 

 


Recommend the tutorial

Ask Questions?    Discuss: Java ObjectOutputStream  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 
Comments