Java java.io.ObjectOutput is an interface in the Java IO package that provides methods to write objects in various formats. It extends the java.io.DataOutput interface and is typically implemented by classes such as ObjectOutputStream. ObjectOutput allows objects to be serialized and written to a stream, which can then be used to create an object graph with the original objects and their data intact. It is used for storing and transmitting objects in a portable manner.
Java ObjectOutput - 30 examples found. These are the top rated real world Java examples of java.io.ObjectOutput extracted from open source projects. You can rate examples to help us improve the quality of examples.