2
我序列化對象爲在本地存儲新的文件,通過這意味着:文件中關於Java本地存儲,Android的
ObjectOutputStream output=new ObjectOutputStream(openFileOutput("settings.dat", Context.MODE_PRIVATE));
output.writeObject(this);
output.close();
但在其他功能我必須檢查文件的存在:
File file=new File("settings.dat");
if (file.exists()) Toast.makeText(this, "yes", Toast.LENGTH_LONG).show();
文件.exists()始終返回false。請幫幫我。