0
我想讀取文本文件中的每個字符。例如,我有一個文本文件,其中包含以下文本「John 26 Canada」,我想讀取每個字符,以便我可以將每個字符串放入其特定文本視圖。這將是輸出。Android - 在文本文件中讀取字符
名稱:約翰 年齡:26 國家:加拿大
我在將數據保存到文本文件中的代碼。
private void performSaveFile(String f) {
// this does the actual file saving.
// set the filename in the interface:
EditText name = (EditText) findViewById(R.id.etName);
EditText age = (EditText) findViewById(R.id.etAge);
EditText country = (EditText) findViewById(R.id.etCountry);
String strFileContent = name.getText().toString()
+ age.getText().toString() + country.getText().toString();
// ... and save the file:
try {
FileOutputStream oStream = openFileOutput(f, Context.MODE_PRIVATE);
oStream.write(strFileContent.getBytes());
oStream.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
什麼是你有問題嗎? –