次の.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
]
}
]
含まれるデータを表すために2つのクラスを用意しました。
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;にあるSTART_ARRAYトークンからcom.example.GeoPointのインスタンスを逆シリアル化できません 行:5、列:25]
(参照チェーンを通じて:com.example.Location ["center"])
center
ありません。タイプは無効なオブジェクトの配列です。交換してみ[
と]
して{
と}
周りのJSON文字列にlongitude
してlatitude
、彼らがオブジェクトになりますので。