0

我无法将我的序列化对象写入文件。我的保存例程总是在 ObjectOutput.writeObject(..) 失败

我有一个包含项目链接列表的 Inventory 类。MainView 是程序的主要 JFrame,它还包含 Inventory 对象。

我以前有过这样的工作,但我决定重写我的大部分程序。似乎我做了一些事情来搞砸它,但我不知道是什么。

如果您需要更多代码,请告诉我,但我认为这涵盖了所有内容。

物品类别

import java.io.Serializable;

public class Item implements Serializable
{
    private static final long serialVersionUID = 1L;

    private String m_sItemNumber;

    public String getItemNumber(){return m_sItemNumber;}
    public void setItemNumber(String newVal){m_sItemNumber = newVal;}


    public void setDefaults()
    {
        m_sItemNumber = "notset";
    }

}

库存类

import java.io.Serializable;
import java.util.LinkedList;

public class Inventory implements Serializable
{
    private static final long serialVersionUID = 1L;

    MainView mainView;
    LinkedList<Item> Inventory = new LinkedList<>(); 

    int indexOfCurrentItem;

    public void setMainView(MainView view)
    {
        mainView = view;
    }

    public boolean addItem(Item it)
    {
        Inventory.add(it);
        return true;
    }

    public Item getCurrentItem()
    {
        return Inventory.get(indexOfCurrentItem);
    }

    public Item getItemByIndex(int index)
    {
        return Inventory.get(index);
    }

}

IOHandler串口保存功能

public boolean saveSerialInv(String arg)
    {
        loadSaveDialog.newStatusLine("   Starting Inventory Save");

        ObjectOutput out = null;
        try 
        {
            out = new ObjectOutputStream(new FileOutputStream(arg));
        } 
        catch (FileNotFoundException e)
        {
            loadSaveDialog.newStatusLine("   Could Not Create File");
            return false;
        } 
        catch (IOException e) 
        {
            mainView.newStatusLine("   IO File save Exception");
            return false;
        }

        try 
        {
            out.writeObject(mainView.inventoryOfItems); // !! Fails here. !!
        } 
        catch (IOException e) 
        {
            loadSaveDialog.newStatusLine("   IO Write-- Exception");
            try 
            {
                    out.close();
        } 
            catch (IOException e1) 
            {
                    loadSaveDialog.newStatusLine("   IO Close save file Exception");
                    return false;
                }
            return false;
        }

        try 
        {
            out.close();
        } 
        catch (IOException e) 
        {
            loadSaveDialog.newStatusLine("   IO Close save file Exception");
            return false;
        }
        return true;
    }

主视图类

public class MainView extends javax.swing.JFrame 
{


    static LoadSaveDialog loadSave = new LoadSaveDialog();
    static ItemInfoDialog itemInfo = new ItemInfoDialog();
    Inventory inventoryOfItems = new Inventory();
    boolean invLoaded = false;

     public MainView() 
     {
        initComponents();
        loadSave.setMainView(this);
        inventoryOfItems.setMainView(this);
    }
}
4

1 回答 1

2

序列化的一般规则是,你的类中的所有属性都应该是serializable或标记为transient。没有关于 MainView 类是否可序列化的信息,如果不是,则将其标记为瞬态。

  MainView mainView;

您中的任何不可序列化的属性都不能从对象流中读取/写入。因此这将失败:

        out.writeObject(mainView.inventoryOfItems); // !! Fails here. !!
于 2013-08-15T00:44:45.053 回答