gpt4 book ai didi

java - java中JSON字符串到JSON对象

转载 作者:行者123 更新时间:2023-12-01 04:20:57 25 4
gpt4 key购买 nike

这是我的 JSON 字符串

"[{"name":"3214657890RootSAPSSE","children":[{"name":"672BENIAMEEN .Sales Base Market SectionCustomer Representative"},{"name":"672BENIAMEEN .Sales Base Market SectionPeão"}]}]"

当我将它解析为 java 中的 json 对象时,我得到 null。该字段来自 HTML 隐藏字段,它来自 java 脚本。

这是我的java代码

String x = request.getParameter("JSONString");
System.out.println(x);
JSONArray jsonObject = (JSONArray) JSONValue.parse(x);
Gson gson = new Gson();
java.lang.reflect.Type type = new TypeToken<List<EmployeeJSONObj>>(){}.getType();
List<EmployeeJSONObj>l = gson.fromJson(jsonObject.toJSONString(), type);
System.out.println(l.get(0).getName());

这是我的 Java 类

public  class EmployeeJSONObj {
private String name;
private List<EmployeeJSONObj> children = new LinkedList<>();
EmployeeJSONObj()
{

}
public String getName()
{
return name;
}

public String toString() {
return "name: " + name + ", children = " + children;
}

}

最佳答案

不要像那样双重解析字符串;这样做没有意义。将 x 直接传递给 GSON。

String x = request.getParameter("JSONString");
Gson gson = new Gson();
java.lang.reflect.Type type = new TypeToken<List<EmployeeJSONObj>>(){}.getType();
List<EmployeeJSONObj>l = gson.fromJson(x, type);
System.out.println(l.get(0).getName());

关于java - java中JSON字符串到JSON对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18923331/

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