标签: java android arraylist internal fileoutputstream
要将ArrayList FileOutputStream保存在Android手机的内存中吗?或者你有更好的方法吗?
ArrayList
FileOutputStream
例如:
FileOutputStream fos = openFileOutput("Foto_Imovel", Context.MODE_PRIVATE); fos.write(My_Array_List.getBytes()); fos.close();
谢谢!