programming-examples/java/Core_Java/Serializing an Object.java
2019-11-15 12:59:38 +01:00

25 lines
750 B
Java

Serializing an Object
public static void main(String args[]){
try{
Object object = new javax.swing.JButton("push me");
// Serialize to a file
ObjectOutput out = new ObjectOutputStream(new FileOutputStream("filename.ser"));
out.writeObject(object);
out.close();
// Serialize to a byte array
ByteArrayOutputStream bos = new ByteArrayOutputStream() ;
out = new ObjectOutputStream(bos) ;
out.writeObject(object);
out.close();
// Get the bytes of the serialized object
byte[] buf = bos.toByteArray();
}
catch (Exception ioe){
ioe.printStackTrace();
}
}