为了账号安全,请及时绑定邮箱和手机立即绑定

解析 json 错误:java.lang.IllegalStateException

解析 json 错误:java.lang.IllegalStateException

繁星点点滴滴 2022-07-20 20:56:32
我正在尝试解析一个包含一堆城市的大型 json 文件(以下是文件中的前两个城市):  [  {    "id": 707860,    "name": "Hurzuf",    "country": "UA",    "coord": {      "lon": 34.283333,      "lat": 44.549999    }  },  {    "id": 519188,    "name": "Novinki",    "country": "RU",    "coord": {      "lon": 37.666668,      "lat": 55.683334    }  } ]我想获取“名称”值与字符串匹配的城市的 ID:    JsonParser parser = new JsonParser();    JsonElement jsontree = parser.parse(new FileReader("C:/Users/kevin/Eclipse-workspace-new/kevinzhou_CSCI201_assignment3/WebContent/city.list.json"));    JsonElement je = jsontree.getAsJsonObject();    JsonArray ja = je.getAsJsonArray();    for (Object o : ja)    {        JsonObject city = (JsonObject) o;        if(cityName == city.get("name").getAsString())        {            System.out.println(city.get("id").getAsString());        }    }但是,我收到以下错误:java.lang.IllegalStateException: Not a JSON Object: 然后它在冒号后吐出整个文件。
查看完整描述

2 回答

?
慕容708150

TA贡献1831条经验 获得超4个赞

改成


// JsonElement je = jsontree.getAsJsonObject();

JsonArray ja = jsontree.getAsJsonArray();

因为它在顶层包含一个数组


查看完整回答
反对 回复 2022-07-20
?
郎朗坤

TA贡献1921条经验 获得超9个赞

尝试下面给定的代码来处理这两种情况


if (jsontree instanceof JsonObject) {

    JsonObject  jobject = new JsonObject(jsontree .getAsJsonObject());

 } else if (jsontree instanceof JsonArray) {

    JsonArray  jarray =  new JsonArray(jsontree .getAsJsonArray());

 }


查看完整回答
反对 回复 2022-07-20
  • 2 回答
  • 0 关注
  • 211 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信