-2
我創建使用此代碼的data.txt:讀取文件的Android
String data = "etc etc etc etc。。"
try {
FileOutputStream fOut;
fOut = openFileOutput("data.txt", MODE_WORLD_READABLE);
OutputStreamWriter fw = new OutputStreamWriter(fOut);
fw.write(data);
fw.flush();
fw.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
,但我怎麼知道它被寫進?我如何爲我的data.txt定義路徑?
我想用其他活動來讀它,所以我需要知道如何從路徑以及閱讀..
這是標準的Java文件IO。谷歌可以指向你一千個教程 –
我整天都試過,它不工作! –
你應該使用['Environment.getDataDirectory()'](http://developer.android.com/reference/android/os/Environment.html)並在那裏創建一個文件。 –