我在編寫一個應用程序,需要將數據存儲在文本文件中。Android:文件保存在哪裏?
我用FileOutputStream中:
outputStream = openFileOutput(filename, Context.MODE_PRIVATE);
outputStream.write(data.getBytes());
outputStream.close();
我的問題是:在哪裏文件保存?
我不能在任何地方找到它... :(
對於調試,我使用的是nexus7。
感謝您的幫助!
到這個拿上你的文件一看: http://stackoverflow.com/questions/17735159/saving-files-from-app-android?rq=1](http://stackoverflow.com/questions/17735159/saving-files-from-app-android?rq = 1) –
它可以在'/ data/data/yourpackagename /'文件夾中 – SMR
你應該閱讀這個[解釋](http://developer.android.com/training/basics/data-storage/files.html)。 – knightsb