다음 .json 파일이 제공됩니다.
[
{
"name" : "New York",
"number" : "732921",
"center" : [
"latitude" : 38.895111,
"longitude" : -77.036667
]
},
{
"name" : "San Francisco",
"number" : "298732",
"center" : [
"latitude" : 37.783333,
"longitude" : -122.416667
]
}
]
포함 된 데이터를 표현하기 위해 두 개의 클래스를 준비했습니다.
public class Location {
public String name;
public int number;
public GeoPoint center;
}
...
public class GeoPoint {
public double latitude;
public double longitude;
}
.json 파일의 내용을 구문 분석하기 위해 Jackson 2.2.x를 사용 하고 다음 방법을 준비했습니다.
public static List<Location> getLocations(InputStream inputStream) {
ObjectMapper objectMapper = new ObjectMapper();
try {
TypeFactory typeFactory = objectMapper.getTypeFactory();
CollectionType collectionType = typeFactory.constructCollectionType(
List.class, Location.class);
return objectMapper.readValue(inputStream, collectionType);
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
center
속성을 생략하는 한 모든 콘텐츠를 구문 분석 할 수 있습니다. 그러나 지리 좌표를 구문 분석하려고하면 다음 오류 메시지가 표시됩니다.
com.fasterxml.jackson.databind.JsonMappingException :
[출처 : android.content.res.AssetManager$AssetInputStream@416a5850; 줄 : 5, 열 : 25]
(참조 체인을 통해 : com.example.Location [ "center"])
center
은 잘못된 개체의 배열입니다. 교체 시도 [
와 ]
함께 {
와 }
주변의 JSON 문자열 longitude
과 latitude
그들이 개체 수 있도록.