public void loadFile(File infile) throws FileNotFoundException {
InputStream inputStream = openFileInput(String.valueOf(infile));
System.out.println("=====READING========");
try {
InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
BufferedReader sc = new BufferedReader(inputStreamReader);
String temp = "";
while ( (temp = sc.readLine()) != null ) {
System.out.println(sc.readLine());
}
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
这是读者
public void saveGame(File outFile) throws FileNotFoundException {
// Name + UserInfo + CVList+
FileOutputStream os = openFileOutput(String.valueOf(outFile), Context.MODE_PRIVATE);
PrintWriter printWriter = new PrintWriter (os); //set up a writer
String content=userInfo.toString();
content=content+ tempList.toString();//set up the data to be printed
printWriter.println (content);//print it
System.out.println(content);
printWriter.flush();
printWriter.close ();
}
这是作家。
我刚从google搜索r / w .txt文件的方式获取此代码。
代码正在运行,但我想知道因为这是Android版本。
1。 文本文件存储在哪里?我可以看到InputStreamReader和FileOutputStream正在做些什么,但是它在做什么?
2。 应用程序更新后,文本文件是否会被删除?
答案 0 :(得分:0)