I have a few classes linked to each other
public class A implements java.io.Serializable{
public B objB;
}
public class B {//doesn't implement serializable
}
When I try to serialize A, I get error because B is not serializable What I want to do is to serialize A and load B again after de-serializing