我正在使用parcel来缓存二进制文件中的项目。在我需要存储到单个ArrayList
各种类型的对象之前,一切都很好:
fout = new FileOutputStream(file);
Parcel parcel = Parcel.obtain();
ArrayList<Object> list = new ArrayList<Object>(items);
Log.d(TAG, "write items to cache: " + items.size());
parcel.writeList(list);
byte[] data = parcel.marshall();
fout.write(data);
但阅读不能正常运作:
fin = new FileInputStream(file);
byte[] data = new byte[(int) file.length()];
fin.read(data);
Log.d(TAG, "file size: " + file.length());
Parcel parcel = Parcel.obtain();
parcel.unmarshall(data, 0, data.length);
ArrayList<Object> rawList = parcel.readArrayList(Object.class.getClassLoader());
我认为问题出现在Object classLoader中,他无法为扩展类创建对象。
知道如何轻松解决这个问题吗?或者也许有人可以给我建议我的任务是缓存ArrayList
或使用<? extends Object?>
类型的对象设置到文件中。
Logcat:
08-20 12:16:52.200: D/ItemList(6637): writing data
08-20 12:16:52.200: D/ItemList(6637): write items to cache: 2
08-20 12:17:45.940: D/ItemList(6925): reading data
08-20 12:17:46.650: D/ItemList(6925): reading data
08-20 12:17:47.050: D/ItemList(6925): reading data
08-20 12:17:47.060: D/ItemList(6925): cache file found
08-20 12:31:18.050: D/ItemList(7349): file size: 760
08-20 12:17:47.060: D/ItemList(6925): founded items in cache: 0
更多logcat:
08-20 12:49:02.930: D/ItemList(9241): file size: 1136
08-20 12:49:02.930: D/ItemList(9241): dataAvail(): 0
08-20 12:49:02.930: D/ItemList(9241): dataSize(): 1136
08-20 12:49:02.930: D/ItemList(9241): dataCapacity(): 1136
08-20 12:49:02.930: D/ItemList(9241): founded items in cache: 0
答案 0 :(得分:2)
好的,我找到了。您从不读取文件中的数据:
fin = new FileInputStream(file);
byte[] data = new byte[(int) file.length()];
您所做的只是创建输入流并分配字节缓冲区。
编辑添加更多有关如何解组包
的代码Parcel parcel = Parcel.obtain();
parcel.unmarshall(data, 0, data.length);
parcel.setDataPosition(0); // Set the position in the parcel back to the beginning
// so that we can read the stuff out of it
ArrayList<Object> rawList = parcel.readArrayList(Object.class.getClassLoader());