所以,我有一个具有以下属性的类
private String name;
private int counter;
private DateFormat df;
private DecimalFormat def;
private ArrayList<Bike> bike;
static String[] titles = {"some,items,here"};
所有这些都已经初始化,然后在我声明的顶部
public class Motor extends AbstractTableModel implements Serializable
但是当我使用ObjectOutputStream时仍然会得到一个IONotSerializableException,是否有一些限制,我现在可能知道这就是为什么它会这样?
答案 0 :(得分:0)
所有这些字段都是可序列化的,可能除了Bike
。
这意味着:
异常消息和完整的堆栈跟踪应该提供问题真正根源的线索。