1
try {
PrintStream out = new PrintStream(openFileOutput("OutputFile.txt", MODE_PRIVATE));
str=mIn.getText().toString();
out.println(str);
out.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
我想問這個代碼是否創建了一個名爲(OutputFile)的文件?如果是,那麼這個文件的路徑在哪裏?在Android中的讀/寫文件
創建感謝你這麼多的文件。請問另一個問題?我如何閱讀outputFile的內容? – GhadaSalama
使用'openFileInput( 「OutputFile.txt」)'檢索'FileInputStream'和讀回 – Blackbelt