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

时间:2012-07-09 15:41:21

标签: java android serialization deserialization

我有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。

3 个答案:

答案 0 :(得分:13)

您的ItemItemList课程需要implements Serializable

答案 1 :(得分:0)

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

答案 2 :(得分:-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

   }