如何遍历此 JSON 对象中的所有“listPages”?
{
"listPages": [
{
"title": "Accounts",
"recordType": "Company",
},
{
"title": "Contacts",
"recordType": "Person",
}
]
}
我正在尝试通过以下代码将列表项从 listPages 数组中的每个项目添加到列表中:
JSONObject JSONConfig = envConfig.getEnvConfig(this);
try{
JSONArray listPages = JSONConfig.getJSONArray("listPages");
for(int i = 0 ; i < listPages.length() ; i++){
listItems.add(listPages.getJSONObject(i).getString("title"));
}
adapter.notifyDataSetChanged();
}catch(Exception e){
e.printStackTrace();
}
我可以在 logcat 中看到我收到系统错误:下一行出现“java.lang.NullPointerException”。
JSONArray listPages = JSONConfig.getJSONArray("listPages");
我已经尝试从其他问题中阅读和调整内容,但我无法弄清楚。帮助将不胜感激。
这是我的 envConfig.java 类
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import org.json.JSONObject;
import android.content.Context;
import android.util.Log;
public class EnvConfig {
private String rawJSONString;
private JSONObject jsonObjRecv;
public JSONObject getEnvConfig(Context context){
InputStream inputStream = context.getResources().openRawResource(
R.raw.envconfigg);
BufferedReader reader = new BufferedReader(new InputStreamReader(
inputStream));
StringBuilder sb = new StringBuilder();
String line = null;
try {
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
rawJSONString = sb.toString();
try {
JSONObject jsonObjRecv = new JSONObject(rawJSONString);
Log.i("Test", "<JSONObject>\n" + jsonObjRecv.toString()
+ "\n</JSONObject>");
} catch (Exception e) {
e.printStackTrace();
}
return jsonObjRecv;
}
}