0

我想读取文本文件中的每个字符。例如,我有一个包含以下文本“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();
    }
}
4

1 回答 1

1

FileOutputStream oStream = openFileOutput(f, Context.MODE_PRIVATE); oStream.write(strFileContent.getBytes()); oStream.close();

以上是您的代码,现在您已将 f 作为字符串,它应该是文件名。代码如下所示...

private void saveFromFile(String data) throws FileNotFoundException {

String FILENAME= "file.txt";

        FileOutputStream fos = openFileOutput(FILENAME, this.MODE_PRIVATE);
         try {
              fos.write(data.getBytes());
              fos.close();
         } catch (IOException e) {
              Log.e("Controller", e.getMessage() + e.getLocalizedMessage() + e.getCause());
        }
  }
于 2012-10-22T04:39:22.823 回答