1

我正在尝试使用以下代码从打开的天气地图 api 中获取 JSON 数据,但它总是失败。我不知道发生了什么异常,我总是得到捕获中定义的空响应。

 try {
        //URL url = new URL(String.format(OPEN_WEATHER_MAP_API, city));
        URL url = new URL(String.format(OPEN_WEATHER_MAP_API));
        HttpURLConnection connection =
                (HttpURLConnection)url.openConnection();

        connection.addRequestProperty("x-api-key",
                context.getString(R.string.open_weather_maps_app_id));

        BufferedReader reader = new BufferedReader(
                new InputStreamReader(connection.getInputStream()));

        StringBuffer json = new StringBuffer(1024);
        String tmp="";
        while((tmp=reader.readLine())!=null)
            json.append(tmp).append("\n");
        reader.close();

        JSONObject data = new JSONObject(json.toString());

        // This value will be 404 if the request was not
        // successful
        if(data.getInt("cod") != 200){
            return null;
        }

        return data;
    }catch(Exception e){
        return null;
    }
4

4 回答 4

1

我在这里发表评论,因为我无权在您的问题线程中发表评论。打印 catch 块的堆栈跟踪,您可能会找到解决问题的方法。

于 2016-05-31T12:29:03.423 回答
1

如果不知道您是如何创建 URL 的,那么您似乎错过了您的城市String.format

URL url = new URL(String.format(OPEN_WEATHER_MAP_API));

难道不应该

URL url = new URL(String.format(OPEN_WEATHER_MAP_API, city));
于 2016-05-31T21:45:33.400 回答
1

我必须添加以下权限以及互联网权限。

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
于 2016-06-02T09:50:55.417 回答
0

您分配给 OPEN_WEATHER_MAP_API 的 URL 是什么?

网址应该是 - http://api.openweathermap.org/data/2.5/weather?q=city&units=metric

请试试这个...

于 2016-09-24T10:20:18.543 回答