2

我想存储JSONObject在一个文件中。为此,我将对象转换为字符串,然后将其存储在文件中。我使用的代码是:

String card_string =  card_object.toString();
//card_object is the JSONObject that I want to store.

f = new File("/sdcard/myfolder/card3.Xcard");
//file 'f' is the file to which I want to store it.

FileWriter  fw = new FileWriter(f);
fw.write(card_string);
fw.close();

代码按我的意愿工作。现在我从文件中检索该对象。我该怎么做?我对使用什么来读取文件感到困惑?一个InputStream或一个FileReaderBufferedReader或什么。我是 JAVA / android 开发的新手。

请帮忙。欢迎使用简单的语言详细解释在不同场景(如此类)中使用哪些 I/O 功能。我查看了文档,但欢迎您提出建议。

4

3 回答 3

5

您可以使用此代码读取文件。

BufferedReader input = null;
try {
    input = new BufferedReader(new InputStreamReader(
            openFileInput("jsonfile")));
    String line;
    StringBuffer content = new StringBuffer();
    char[] buffer = new char[1024];
    int num;
    while ((num = input.read(buffer)) > 0) {
        content.append(buffer, 0, num);
    }
        JSONObject jsonObject = new JSONObject(content.toString());

}catch (IOException e) {...}

然后你可以使用你的 jsonObject:

从 JSON 对象中获取特定字符串

String name = jsonObject.getString("name"); 

获取特定的 int

int id = jsonObject.getInt("id"); 

获取特定数组

JSONArray jArray = jsonObject.getJSONArray("listMessages"); 

从数组中获取项目

JSONObject msg = jArray.getJSONObject(1);
int id_message = msg.getInt("id_message");
于 2013-05-10T10:59:22.897 回答
4

使用可以使用一个BufferedReaderFileReader

File file = new File("/sdcard/myfolder/card3.Xcard");
StringBuilder text = new StringBuilder();
BufferedReader br = null;

try {
    br = new BufferedReader(new FileReader(file));
    String line;

    while ((line = br.readLine()) != null) {
        text.append(line);
        text.append('\n');
    }
} catch (IOException e) {
    // do exception handling
} finally {
    try { br.close(); } catch (Exception e) { }
}

此外,我建议您Environment.getExternalStorageDirectory();用于构建路径。这不是设备特定的。

干杯!

于 2013-05-10T10:55:07.460 回答
2
File contentfile = new File(filePath);
@SuppressWarnings("resource")
FileInputStream readJsonTextfile = new FileInputStream(contentfile);

Reader ContetnUrlJson = new InputStreamReader(readJsonTextfile);
于 2013-05-10T10:57:51.047 回答