ArrayListをファイルに書き込めません。私は次のようにしていますが、正しい方法は何ですか?
'pt'をarraylistに追加しない場合、プロセスは正常に実行され、保存されます。
os.writeObject(arr); -この行のデバッガーがIOExceptionに移行した後。コード:
//holder class implements Serializable
transient ArrayList<Point> arr;
transient Point pt;
//I've tried without transient, same result
//
arr = new ArrayList<Point>();
pt = new Point();
p.x = 10;
p.y = 20;
arr.add(pt);
//If I don't add 'pt' into arraylist, process goes fine and it gets saved.
//
String strStorageDirectory = this.getFilesDir() + "/DataFiles";
final File DataStorageDirectory = new File(strStorageDirectory);
File lfile = new File(DataStorageDirectory, "samplefile.bin");
FileOutputStream fos;
try {
fos = new FileOutputStream(lfile);
ObjectOutputStream os = new ObjectOutputStream(fos);
os.writeObject(arr);//after this line debugger goes to IOException
//I've tried with os.writeObject((Serializable)arr), same result;
os.flush();//I've tried removing it, same result
os.close();
fos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}