我创建了一个JSONObject并将值放入其中,如下所示。 然后,我将对象“ h”转换为字符串,并使用该字符串在sdcard中写入文件。
JSONObject h = new JSONObject();
try {
h.put("NAme","Yasin Arefin");
h.put("Profession","Student");
} catch (JSONException e) {
e.printStackTrace();
}
String k =h.toString();
writeToFile(k);
在文件中,我看到的文本格式如下。
{"NAme":Yasin Arefin","Profession":"Student"}
我的问题是如何读取特定文件并将这些文本转换回JSONObject?
答案 0 :(得分:0)
要读取文件,您有2个选择:
使用BufferReader
进行阅读,您的代码将如下所示:
//Path to sdcard
File sdcard = Environment.getExternalStorageDirectory();
//Load the file
File file = new File(sdcard,"file.json");
//Read text from file
StringBuilder text = new StringBuilder();
try {
BufferedReader br = new BufferedReader(new FileReader(file));
String line;
while ((line = br.readLine()) != null) {
text.append(line);
text.append('\n');
}
br.close();
}
catch (IOException e) {
//You'll need to add proper error handling here
}
选项2是使用诸如Okio
之类的库:
在您的Gradle文件中添加库
implementation 'com.squareup.okio:okio:2.2.0'
然后在您的活动中:
StringBuilder text = new StringBuilder();
try (BufferedSource source = Okio.buffer(Okio.source(file))) {
for (String line; (line = source.readUtf8Line()) != null; ) {
text.append(line);
text.append('\n');
}
}