使用amirdew / JSON库解析JSON

时间:2018-07-03 15:08:12

标签: android json

我正在使用amirdew/JSON库,该库you can find here将我的字符串解析为JSON。 我检索到的字符串是:https://en.wikipedia.org/w/api.php?format=json&action=query&prop=extracts&exintro=&explaintext=&titles=Portugal

这是我目前所拥有的代码,它无法正常工作,我相信这是因为按键...

public void ParseJson (String json){
JSON json2 = new JSON(json);

String firstTag = json2.key("query").key("pages").key("extract").stringValue();
txtInfo = findViewById(R.id.txtInfo);
txtInfo.setText(firstTag);
}

firstTag变量为null,因为它无法检索任何值。我想检索“ 提取”中的文本。我该怎么做?我需要什么钥匙?

1 个答案:

答案 0 :(得分:2)

我建议您使用SDK中已经存在的JSONObject。您将这样使用它:

String input = "..."; // your input
JSONObject obj = new JSONObject(input);
Strings extracts = obj.getJSONObject("query").getJSONObject("pages").getJSONObject("23033").getString("extract");