我有一个类State
具有向量变量状态并在其设置器函数中设置状态向量列表
class State implement Serializable{
private Vector state;
//its getters and setters
}
在class B
我State
从会话中获取类,然后将其分配给同一个State
对象,然后使用writeObject
此类的方法。
class B {
State _state = (State) session.getAttribute("_stateKey");
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(baos);
oos.writeObject(_state); // at this line i am getting java.io.NotSerializableException
}
有人请帮我解决为什么我收到此错误...