Suppose I have something like this:
class A
{
public B mem;
public int x;
public int y;
}
class B
{
public C mem1;
public D mem2;
}
class C
{
public Image img;
}
class D
{
public int m;
}
//Writing object A onto a file using ObjectWriter?
How would I write class A onto a file with ObjectWriter? If I directly write it, then it will only copy the pointer (if I am not mistaken).
Java Serialization– Brian Roach Apr 9 '12 at 13:53private ...on your member variables – LuckyLuke Apr 9 '12 at 13:55ObjectOutputStreamorXMLEcnoder, private fields would typically not be stored (AFAIU). – Andrew Thompson Apr 9 '12 at 14:04