【发布时间】:2019-11-10 01:13:53
【问题描述】:
我正在做一个需要获取天气信息的项目,所以我使用了 openweathermap api。我的程序正常工作,我从“main”和“wind”获取信息,但我还需要从主天气集获取描述。问题是天气集是 json 文件中的列表,我无法转换它映射。我试图解析的示例 json 文件是 http://api.openweathermap.org/data/2.5/weather?q=London
JSON:
{
"coord":{
"lon":-0.13,
"lat":51.51
},
"weather":[
{
"id":803,
"main":"Clouds",
"description":"broken clouds",
"icon":"04n"
}
],
"base":"stations",
"main":{
"temp":43.56,
"pressure":1004,
"humidity":87,
"temp_min":41,
"temp_max":46.4
},
"visibility":10000,
"wind":{
"speed":11.41,
"deg":80
},
"rain":{
},
"clouds":{
"all":75
},
"dt":1573350303,
"sys":{
"type":1,
"id":1414,
"country":"GB",
"sunrise":1573369754,
"sunset":1573402780
},
"timezone":0,
"id":2643743,
"name":"London",
"cod":200
}
当我们查看文件时,我们注意到天气集中有一个 [] 括号,这在我的项目中造成了问题。我试图查找如何将列表投射到地图并尝试使用我的代码,但没有帮助。文件中的注释代码是我在尝试使其工作时尝试过的东西。
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import java.util.HashMap;
import java.util.Map;
import com.google.gson.*;
import com.google.gson.reflect.*;
import java.util.List;
import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.Map;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
public class PlantWateringApp {
public static Map<String, Object> jsonToMap(String str) {
Map<String, Object> map = new Gson().fromJson(str, new TypeToken<HashMap<String, Object>>() {
}.getType());
return map;
}
public static void main(String[] args) {
String LOCATION = "delhi,india";
String result = "{\"coord\":{\"lon\":77.22,\"lat\":28.65},\"weather\":[{\"id\":711,\"main\":\"Smoke\",\"description\":\"smoke\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":72.32,\"pressure\":1015,\"humidity\":59,\"temp_min\":64.4,\"temp_max\":77},\"visibility\":1000,\"wind\":{\"speed\":3.36,\"deg\":270},\"clouds\":{\"all\":0},\"dt\":1573351180,\"sys\":{\"type\":1,\"id\":9165,\"country\":\"IN\",\"sunrise\":1573348168,\"sunset\":1573387234},\"timezone\":19800,\"id\":1273294,\"name\":\"Delhi\",\"cod\":200}";
System.out.println(result);
Map<String, Object> respMap = jsonToMap(result.toString());
Map<String, Object> mainMap = jsonToMap(respMap.get("main").toString());
Map<String, Object> windMap = jsonToMap(respMap.get("wind").toString());
// Type listType = new TypeToken<List<Map<String,String>>>()
// {}.getType();
// List<Map<String,String>> weatherMap = new
// Gson().fromJson(respMap.get("description").toString(),listType);
// Map<String, Object> name = (Map<String, Object>)
// respMap.get("description");
// Map<String, Object > weatherMap = jsonToMap
// (respMap.get("description").toString());
System.out.println("Location: " + LOCATION);
System.out.println("Current Temperature: " + mainMap.get("temp"));
System.out.println("Current Humidity: " + mainMap.get("humidity"));
System.out.println("Max: " + mainMap.get("temp_min"));
System.out.println("Min: " + mainMap.get("temp_max"));
System.out.println("Wind Speed: " + windMap.get("speed"));
System.out.println("Wind Angle: " + windMap.get("deg"));
}
}
我尝试使用与 main 和 wind 相同的方式:Map weatherMap = jsonToMap (respMap.get("weather").toString());。但我遇到了错误:
////java.lang.IllegalStateException: Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 3 path $[0]
所以我尝试不将 json 转换为 Map,而是直接使用像 Map weatherMap = (Map) respMap.get("weather"); 这样的地图,但我得到了
////java.lang.ClassCastException: java.util.ArrayList cannot be cast to java.util.Map
为此,我尝试将列表投射到地图使用
List<Map<String,String>> weatherMap = new Gson().fromJson(respMap.get("weather").toString(),listType);
但这说明:
//String cannot be converted to int
我真的很困惑在这种情况下该怎么做。我无法弄清楚如何处理 json 文件中的 []。
【问题讨论】:
-
api.openweathermap.org/data/2.5/weather?q=London 需要 api 密钥。最好在这个问题中附加 json。
-
@ruhul Oh.对不起,感谢您让我的帖子更加友好。代码已经有一个 16 位有效的 api 密钥