UPDATE
Thanks everyone for the great assistance, here I have to add one possible reason regarding the exception:
If you add readObject() and writeObject() in the domain classes(like class college below) and also you have to call ObjectOutputStream.writeObject() method in main() method, then make sure:
---Do not place ObjectOutputStream.close() method in the domain class. It will cause exception because then it is illegal to operate on that object since it is closed(how can the program read the file or close the file after it have been already closed?).
I know it is a minor issue but quite subtle to debug as the exception will not tell anything about it. So this is a little bit of heads up for the record.
I try to implement a simple snippet to compromise serialization on transient object, which is serialize the primitive fields of that transient object, then deserialize those primitive fields by the ObjectInputStream, finally compose a new object with them. The scenario is like this:
public class College implements Serializable{
private static final long serialVersionUID = 1L;
private String name;
private transient City city; //transient
private String zipCode;
// constructors & getter/setters
private void writeObject(ObjectOutputStream os){
try {
os.defaultWriteObject();
os.writeInt(city.getCode());
os.writeInt(city.getPopulation());
os.writeObject(city.getName());
os.flush();
os.close(); // update: not good practice, may throw exception.
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
private void readObject(ObjectInputStream os){
try {
os.defaultReadObject();
int code = os.readInt();
int population = os.readInt();
String name = (String)os.readObject();
City theCity = new City(code, name, population);
System.out.println(theCity.toString());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
Here is the City class
public class City {
// the primitive & String fields
private int code;
private String name;
private int population;
// getter/setters
}
And here is the lovely code to write and read the college object(a little bit chunky, sorry)
public class GeneralTest {
public static void main(String[] args) {
// TODO Auto-generated method stub
City city = new City(375, "New York", 380897);
College college = new College("NYU", city, "10289");
College readCollege = null;
City readCity = null;
System.out.println("Before serialization -- City: ["+city.toString()+"], College: ["+college.toString()+"]");
try {
FileOutputStream fs = new FileOutputStream("college.foo");
ObjectOutputStream os = new ObjectOutputStream(fs);
os.writeObject(college);
os.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
FileInputStream fis = new FileInputStream("college.foo");
ObjectInputStream ois = new ObjectInputStream(fis);
readCollege = (College)ois.readObject();
//get values to compose a city object
int id = ois.readInt();
int population = ois.readInt();
String name = ois.readUTF();
readCity = new City(id, name, population);
ois.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("After serialization -- City: ["+readCity.toString()+"], College: ["+readCollege.toString()+"]");
}
}
And then I got this exceptions and the readCollege and readCity are apparently null :(
java.io.IOException: Write error
at java.io.FileOutputStream.writeBytes(Native Method)
at java.io.FileOutputStream.write(FileOutputStream.java:282)
at java.io.ObjectOutputStream$BlockDataOutputStream.drain(ObjectOutputStream.java:1847)
at java.io.ObjectOutputStream$BlockDataOutputStream.setBlockDataMode(ObjectOutputStream.java:1756)
at java.io.ObjectOutputStream.writeNonProxyDesc(ObjectOutputStream.java:1257)
at java.io.ObjectOutputStream.writeClassDesc(ObjectOutputStream.java:1211)
at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1395)
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)
at java.io.ObjectOutputStream.writeFatalException(ObjectOutputStream.java:1547)
at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:333)
at serialized.GeneralTest.main(GeneralTest.java:27)
java.io.EOFException
at java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2721)
at java.io.ObjectInputStream$BlockDataInputStream.readUTFChar(ObjectInputStream.java:3113)
at java.io.ObjectInputStream$BlockDataInputStream.readUTFBody(ObjectInputStream.java:3010)
at java.io.ObjectInputStream$BlockDataInputStream.readUTF(ObjectInputStream.java:2819)
at java.io.ObjectInputStream.readUTF(ObjectInputStream.java:1050)
at serialized.College.readObject(College.java:70)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:969)
at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1848)
at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1752)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1328)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350)
at serialized.GeneralTest.main(GeneralTest.java:40)
java.io.EOFException
at java.io.ObjectInputStream$BlockDataInputStream.peekByte(ObjectInputStream.java:2553)
at java.io.ObjectInputStream.skipCustomData(ObjectInputStream.java:1899)
at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1873)
at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1752)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1328)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350)
at serialized.GeneralTest.main(GeneralTest.java:40)
Exception in thread "main" java.lang.NullPointerException
at serialized.GeneralTest.main(GeneralTest.java:52)
Any ideas? Thanks in advance.
