gpt4 book ai didi

java - JSonParser 出现空值

转载 作者:行者123 更新时间:2023-11-30 06:27:08 28 4
gpt4 key购买 nike

我正在遍历 Json 文件,似乎只得到空值。正如你所看到的,我正在尝试使用索引来访问它们。另外,我的整数很有趣,因为它不喜欢我使用 json 值中的 Integer.parseInt 。

JSON:

{
"people": [
{
"name": "Kelly",
"age": 50,
"sex": "f",
"illness": "Allergies"
},
{
"name": "Josh",
"age": 40,
"sex": "m",
"illness": "Sleep Apnea"
},
{
"name": "Brad",
"age": 20,
"sex": "m",
"illness": "Heart Disease"
}
]
}

Java:

import java.io.FileReader;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;


public class FileLoader {

@SuppressWarnings("unchecked")
public static void main(String args[]) {
JSONParser parser = new JSONParser();
int count = 0;

try {
Object obj = parser.parse(new FileReader(
"Consumers.json"));

JSONObject jsonObject = (JSONObject) obj;
JSONArray array = (JSONArray) jsonObject.get("people");

if(array.size() > 0) {
while (count < array.size()) {

答案编辑

JSONObject people = (JSONObject) array.get(count);
String name = (String) people .get("name");
int age = (Integer) people .get("age");
String sex = (String) people .get("sex");
String illness = (String) people .get("illness");

完成编辑

                    JSONObject people = (JSONObject) jsonObject.get(count);
String name = (String) jsonObject.get("name");
int age = (Integer) jsonObject.get("age");
String sex = (String) jsonObject.get("sex");
String illness = (String) jsonObject.get("illness");


System.out.println("\nPeople List " + count + ": ");
System.out.println("Name: " + name);
System.out.println("Age: " + age);
System.out.println("Sex: " + sex);
System.out.println("Illness: " + illness);
count++;
}
}

} catch (Exception e) {
e.printStackTrace();
}
}
}

我只需要读入文件,但在读取嵌套数组时遇到问题。所有值都返回 null。我将其构建为 Maven 项目。

最佳答案

这就是问题:

JSONObject people = (JSONObject) jsonObject.get(count);

jsonObject 不是人员数组,它是顶级 JSON 对象。由于该对象的顶层只有一个键(“people”),因此对 get(0)、get(1) 等的调用都返回 null。

这是使用数组而不是 jsonObject 的正确行:

JSONObject people = (JSONObject) array.get(count);

关于java - JSonParser 出现空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46961468/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com