我想在我的网站上创建gmaps。
我找到了,如何获得坐标。
{
"results" : [
{
// body
"formatted_address" : "Puławska, Piaseczno, Polska",
"geometry" : {
"bounds" : {
"northeast" : {
"lat" : 52.0979041,
"lng" : 21.0293984
},
"southwest" : {
"lat" : 52.0749265,
"lng" : 21.0145743
}
},
"location" : {
"lat" : 52.0860667,
"lng" : 21.0205308
},
"location_type" : "GEOMETRIC_CENTER",
"viewport" : {
"northeast" : {
"lat" : 52.0979041,
"lng" : 21.0293984
},
"southwest" : {
"lat" : 52.0749265,
"lng" : 21.0145743
}
}
},
"partial_match" : true,
"types" : [ "route" ]
}
],
"status" : "OK"
}
我想得到:
"location" : {
"lat" : 52.0860667,
"lng" : 21.0205308
},
来自这个Json。
我决定使用json-simple
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1</version>
</dependency>
我的代码是:
String coordinates = //JSON from google
JSONObject json = (JSONObject)new JSONParser().parse(coordinates);
我可以得到第一个孩子:“结果”
String json2 = json.get("results").toString();
json2显示正确的“结果”主体
但我不能得到“定位”的孩子。
怎么做?
由于
答案 0 :(得分:9)
我认为您需要将json.get("results")
的电话转发给JSONArray
。
即
String coordinates = //JSON from google
JSONObject json = (JSONObject)new JSONParser().parse(coordinates);
JSONArray results = (JSONArray) json.get("results");
JSONObject resultObject = (JSONObject) results.get(0);
JSONObject location = (JSONObject) resultObject.get("location");
String lat = location.get("lat").toString();
String lng = location.get("lng").toString()
诀窍是查看你要反序列化的json部分的类型,并将其转换为适当的类型。
答案 1 :(得分:0)
关于这个link
com.google.gson.JsonParser#parse(java.lang.String)
现已弃用
所以使用com.google.gson.JsonParser#parseString
,效果很好
Kotlin 示例:
val mJsonObject = JsonParser.parseString(myStringJsonbject).asJsonObject
Java 示例:
JsonObject mJsonObject = JsonParser.parseString(myStringJsonbject).getAsJsonObject();