编辑:
已添加相关类以便能够访问 JSON 数组的每个元素层。
目前,当(仍然)尝试访问我正在调用数据包装器类的新对象的位置时,我可以看到访问该位置的代码的实现应该如何工作,但目前我收到以下错误:
The method getGeometry() is undefined for the type List.
我让 Eclipse 通过显示“getLongitude()”和“getLatitude()”方法来自动完成位置对象,但它们应该是“getLat()”和“getLng()”方法。
我看到按顺序访问对象是如何让我得到 long 和 lat 但上面的错误仍然让我失望。
这是我的 serpate JSON 类:
数据包装器:
package com.example.restfulweb;
import java.util.List;
import com.google.gson.Gson;
public class DataWrapper<GeoResult> {
List<GeoName> results;
public List<GeoName> getResults() {
return results;
}
public void setResults(List<GeoName> results) {
this.results = results;
}
@SuppressWarnings("rawtypes")
public DataWrapper fromJson(String jsonString)
{
return new Gson().fromJson(jsonString, DataWrapper.class);
}
}
地名类:
package com.example.restfulweb;
public class GeoName {
private String id;
private Geometry geometry;
private String name;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Geometry getGeometry() {
return geometry;
}
public void setGeometry(Geometry geometry) {
this.geometry = geometry;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
几何类:
package com.example.restfulweb;
public class Geometry {
private Location location;
public Location getLocation() {
return location;
}
public void setLocation(Location location) {
this.location = location;
}
}
位置类:
包 com.example.restfulweb;
public class Location {
private Double lat;
private Double lng;
public Double getLat() {
return lat;
}
public void setLat(Double lat) {
this.lat = lat;
}
public Double getLng() {
return lng;
}
public void setLng(Double lng) {
this.lng = lng;
}
} }
如图所示,所有 Getter 和 setter 方法都匹配。作为返回对象的列表我不确定为什么会抛出这个错误?
代码如何访问图层:
@SuppressWarnings("rawtypes")
DataWrapper dataWrapper = new DataWrapper();
Location location = dataWrapper.getResults().getGeometry().getLocation();