将JSON文件保存到内部存储 - Android

时间:2017-06-16 13:56:05

标签: java android json debugging

我一直在尝试将JSON(目前,它只是一个通用文件)保存到我设备的内部存储中。我看过很多看起来与我所写的完全一样的例子,但我永远无法在我的设备上找到该文件。

保存文件的代码

public void saveJSONStringToFile(String json) {
  FileOutputStream outfile = null;
  String filename = "json_test.json";

  try {
    outfile = openFileOutput(filename, this.MODE_PRIVATE);
    outfile.write(json.getBytes());
    outfile.close();
  } catch (Exception e) {
    e.printStackTrace();
  }
}

我知道它不能正常工作,因为我还实现了代码来检索该文件,当我尝试这个时,应用程序就会挂起,暗示它正在寻找的东西不是&#39那里。

0 个答案:

没有答案