gpt4 book ai didi

java - 使用java将字符串转换为json对象

转载 作者:行者123 更新时间:2023-12-02 05:28:52 25 4
gpt4 key购买 nike

我有一个字符串数据,我想将其添加到 json 并检索它以将其添加到 Excel。但它没有发生请帮忙这是我的代码......

String table = "[{"id":1,"name":"xxx","location":"xx"}{"id":2,"name":"yyy","location":"yy"}{"id":3,"name":"zzz","location":"zz"}]";

 JSONObject jObject  = new JSONObject(table); // json       String
projectname = jObject.getString("name"); // get the name from data.
System.out.println(projectname);

最佳答案

您可以使用 JSONObject 和 JsonArray 来实现此目的,如下所示

JSONObject mainObj = new JSONObject();
JSONArray somearr = new JSONArray();
while (iter.hasnext()) {
ClassName someObject=iter.next();
JSONObject jsonobj = new JSONObject();
jsonobj.put("id", id_from_someObject);;
jsonobj.put("name", name_from_someObject);
jsonobj.put("name", location_from_someObject);;

somearr.put(seatObj);

}

mainObj.put("response",somearr);

return mainObj.toString();

关于java - 使用java将字符串转换为json对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25742968/

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