使用gson从json中提取值

yvgpqqbh  于 2021-07-13  发布在  Java
关注(0)|答案(2)|浏览(402)

我正在尝试使用gson java库从下面提供的url中提取json值:http://api.wunderground.com/api/b28d047ca410515a/forecast/q/-33.912,151.013.json版本
我已成功使用下面提供的代码从下面的url提取数据:http://api.wunderground.com/api/b28d047ca410515a/conditions/q/-33.912,151.013.json版本
代码:

String url = "http://api.wunderground.com/api/b28d047ca410515a/conditions/q/-33.912,151.013.json";
   String url2 = "http://api.wunderground.com/api/b28d047ca410515a/forecast/q/-33.912,151.013.json";

            InputStream is = null;
            try {
                is = new URL(url).openStream();
                BufferedReader rd = new BufferedReader(new InputStreamReader(is, Charset.forName("UTF-8")));
                String jsonText = readAll(rd);

                JsonElement je = new JsonParser().parse(jsonText);

                System.out.println("Current Temperature:" + getAtPath(je, "current_observation/temp_c").getAsString() );

            } catch (MalformedURLException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();

            } finally {
                try {
                    if (is != null)
                        is.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }

然而,我得到异常试图从url2提取如下代码,这似乎是一个更复杂的json获取值,请任何帮助?

// below code not working

            weather_icon_url = getAtPath(je, "current_observation/icon_url").getAsString();

            is = new URL(url2).openStream();
            BufferedReader rd2 = new BufferedReader(new InputStreamReader(is, Charset.forName("UTF-8")));
            String jsonText2 = readAll(rd2);

            JsonElement je2 = new JsonParser().parse(jsonText2);

            System.out.println("max Temperature:" + getAtPath(je2, "forecast/simpleforecast/forecastday/high/celsius").getAsString() );

        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();

        } finally {
            try {
                if (is != null)
                    is.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

getatpath代码:

private static JsonElement getAtPath(JsonElement e, String path) {
        JsonElement current = e;
        String ss[] = path.split("/");
        for (int i = 0; i < ss.length; i++) {
            current = current.getAsJsonObject().get(ss[i]);
        }
        return current;
    }
iaqfqrcu

iaqfqrcu1#

这应该起作用:

System.out.println("max Temperature:" + getAtPath(je2, "forecast/simpleforecast/forecastday/high/celsius").getAsString() );
2jcobegt

2jcobegt2#

你面临的问题是因为 getAtPath 实施。 [{"date":{"epoch":"1459152000"... 表示该方法试图作为jsonobject访问的jsonarray。因此 IllegalStateException .
jsonobject com.google.gson.jsonelement.getasjsonobject()
将此元素作为jsonobject的方便方法。如果元素是其他类型,则会产生illegalstateexception。因此,最好先通过调用isjsonobject()来确保此元素是所需类型之后再使用此方法。
您可以更新和使用如下内容,因为现在它只返回第一个元素。

private static JsonElement getAtPath(JsonElement e, String path) {
        JsonElement current = e;
        String ss[] = path.split("/");
        for (int i = 0; i < ss.length; i++) {
            if(current instanceof JsonObject){
                current = current.getAsJsonObject().get(ss[i]);
            } else if(current instanceof JsonArray){
                JsonElement jsonElement = current.getAsJsonArray().get(0);
                current = jsonElement.getAsJsonObject().get(ss[i]);
            }
        }
        return current;
    }

相关问题