如何序列化/反序列化 arrayList(Object)

我有一个ArrayList<ItemList>

其中 ItemList 是:

public class ItemList {
    public ArrayList<Item> it = new ArrayList<Item>();
    public String name = "";

    public ItemList() {
    }
}

和项目是:

public class Item {
    public String name = "";
    public int count = 0;

    public Item() {
    }
}

我尝试序列化此列表:

try {
            FileOutputStream fileOut = new FileOutputStream(sdDir + serFile);
            ObjectOutputStream out = new ObjectOutputStream(fileOut);
            out.writeObject(List_Of_Lists);
            out.close();
            fileOut.close();

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

我认为这是工作,因为我在文件夹中找到了这个文件。

但我无法从文件反序列化为ArrayList<ItemList>

法典:

        try {
            FileInputStream fileIn = new FileInputStream(sdDir + serFile);
            ObjectInputStream in = new ObjectInputStream(fileIn);
            List_Of_Lists = (ArrayList<ItemList>) in.readObject(); 
            Log.i("palval", "dir.exists()");
            in.close();
            fileIn.close();
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

我怎样才能反序列化这个?我总是捕捉IOException。ArrayList<ItemList>


答案 1

您的和类需要ItemItemListimplements Serializable


答案 2

如果你已经做了子类,那么将序列化方法添加到父类,它将删除错误。