14

我有一个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();
        }

我如何反序列化这个ArrayList<ItemList>?我总是抓住 IOException。

4

3 回答 3

13

ItemItemList班级需要implements Serializable

于 2012-07-09T15:53:09.963 回答
0

如果您已创建子类,则将 serializabe 方法添加到父类它将消除错误。

于 2016-12-20T21:11:10.410 回答
-1

我假设您已经序列化了 ItemList 而不是 Item .....

ArrayList<ItemList> arr = (ArrayList<ItemList>) in.readObject();

for (ItemList a : arr) 
   {
        // In this loop by iterating arr, you will get the whole List of ItemList

   }
于 2012-07-09T15:47:39.693 回答