为什么我得到NotSerializableException



我有一个实现Serializable的类,但每当我试图将其写入磁盘时,我很难找到它为什么会抛出这个异常。我正在尝试编写ValueConatiner.class

public class ValueContainer implements Serializable {
    private static final long serialVersionUID = 2846820178517499793L;
    public String name;
    public MonetaryField buy;
    public MonetaryField sell;
    public MonetaryField revenue;
    public MonetaryField cost;
    public MonetaryField listing_fee;
    public MonetaryField sale_fee;
    public MonetaryField profit;
    public int quantity;
    public int investment;
    public int period;
    public ValueContainer(String n, MonetaryField b, MonetaryField s,
                          MonetaryField r, MonetaryField c, MonetaryField lf,
                          MonetaryField sf, MonetaryField p, int q,
                          int i, int per) {
            name = n;
            buy = b;
            sell = s;
            revenue = r;
            cost = c;
            listing_fee = lf;
            sale_fee = sf;
            profit = p;
            quantity = q;
            investment = i;
            try {
                    period = per;
            } catch(NumberFormatException e) {
                    System.out.println("No data. Enter a number.");
            }
    }
}

我试图在一个单独的类中使用这个方法将它写入磁盘,在这个类中我保存了我的JMenuBar。

private void saveFile() {
    if(!currentFile.exists()) {
        loadFile();
    }
    if(currentFile.exists()) {
        try {
            ValueContainer values = getValues();
            FileOutputStream f_out = new FileOutputStream(currentFile);
            ObjectOutputStream obj_out = new ObjectOutputStream(f_out);
            try {
                obj_out.writeObject(values);
            } finally {
                obj_out.close();
                f_out.close();
            }
            System.out.println("Saved!");
        } catch(IOException e) {
            System.out.println(e);
        }
    }
}

我只是想在黑暗中拍一张照片,然后说。。。

MonetaryField也需要是可序列化的。

遍历图形时可能遇到不支持Serializable的对象界面在这种情况下,将抛出NotSerializableException并且将识别不可串行化对象的类。

这来自javadocs。要使实例可序列化,对象图中的所有对象也必须是可序列化的。仔细检查是否是这种情况。

如果类实现serializable并且它的所有非基元字段都是serializable,那么它是可序列化的。可能MonetaryField不是serializable

相关内容

  • 没有找到相关文章

最新更新