ObjectOutputStream « File Input Output « Java






1.new ObjectOutputStream(new BufferedOutputStream(new FileOutputStream(StringFileName)));
2.Create ObjectOutputStream out of FileOutputStream
3.Write different data types with ObjectOutputStream
4.A program that serializes and deserializes an Employee array
5.implements Externalizable
6.Writing objects to file with ObjectOutputStream
7.Serializing an Object (JButton)
8.Override writeObject(ObjectOutputStream oos) and readObject(ObjectInputStream ois)
9.Returns a byte array from the given object.