我想读取文本文件中的每个字符。例如,我有一个包含以下文本“John 26 Canada”的文本文件,我想读取每个字符,以便可以将每个字符串放入其特定的文本视图中。这将是输出。
姓名:约翰年龄: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();
}
}