1 / 8

Java Serialization

Java Serialization. What is Serialization?. Allows the persistent storage of objects Uses the java.io.Serializable interface ObjectInputStream and ObjectOutputStream Allows you to save objects to file and load them at a later date

oren-knox
Télécharger la présentation

Java Serialization

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Java Serialization CS12420

  2. What is Serialization? • Allows the persistent storage of objects • Uses the java.io.Serializable interface • ObjectInputStream and ObjectOutputStream • Allows you to save objects to file and load them at a later date • Really should only be used for temporary storage of objects CS12420

  3. What is actually saved? • Only class name and object’s data is saved • If that data is an object, it is also saved • Each object is given a serial number • If an object has already been saved (e.g. within a graph) then only the serial number is saved • Methods are not saved • Static information not saved CS12420

  4. An example Network structure: Nan granddaughter Stephanie Family daughter daughter daughter Mum Dad Serialized structure: 1 2 3 4 5 family dad mum nan stephanie daughter = 3 daughter = 5 members = 2 3 4 5 daughter = 5 granddaughter = 5 CS12420

  5. To save and load structure To save the objects to file: FileOutputStream file = new FileOutputStream("data.ser"); ObjectOutputStream output = new ObjectOutputStream(file); output.writeObject(family); output.close(); To load the objects from file: FileInputStream file = new FileInputStream("data.ser"); ObjectInputStream input = new ObjectInputStream(file); Family family = (Family) input.readObject(); input.close(); Note .ser file naming convention CS12420

  6. Indicate data to ignore • In some situations you may not require the serialized object to store all its data • Some classes cannot be serialized • To indicate that some data should not be stored use the keyword transient publicclass Test implements Serializable { publictransient PrintWriter pw; publicint total; ... CS12420

  7. Making an object serializable • Implement the Serializable interface • Does not require any methods to be implemented • Implement the Externalizable interface • default behaviour only saves class name • must implement readExternal and writeExternal CS12420

  8. Serialized Object V. Class Compatibility • Handled via the serialVersionUID value private static final long serialVersionUID = -2767605614048989439L; • View using serialver -show • Stored with serialized object • If not explicitly defined then a value is inserted at compile time • If the values are not the same - InvalidClassException CS12420

More Related