0

我已经使用这种方式将一些数据保存在应用程序文件目录中的 .txt 中,名称在 FILE_NAME 变量中,它是字符串。

public void save() 
{
        mEditText = findViewById(R.id.data);
        String text = mEditText.getText().toString();
        FileOutputStream fos = null;
        try {
            fos = openFileOutput(FILE_NAME, MODE_PRIVATE);
            fos.write(output.getBytes());
            Toast.makeText(this, "Saved to " + getFilesDir() + "/" + FILE_NAME,
                    Toast.LENGTH_LONG).show();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (fos != null) {
                try {
                    fos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
}

现在我想从这个 .txt 文件中获取数据,我正在尝试找到一种方法来做到这一点。它有很多信息行,所以如果我可以将文件直接发送到我的电子邮件,将其上传到谷歌驱动器或任何其他方式以完全获取它,将会很方便。

4

0 回答 0