次の.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:のインスタンスを逆シリアル化できません
[Source:Android.content.res.AssetManager$AssetInputStream@416a5850]のSTART_ARRAYトークンのうちcom.example.GeoPoint。行番号5、列番号25]
(参照チェーンを通じて:com.example.Location ["center"])
JSON文字列の形式が正しくありません。center
の型は無効なオブジェクトの配列です。 JSON文字列のlongitude
とlatitude
を囲んで、[
と]
を{
と}
に置き換えて、それらがオブジェクトになるようにします。
[
{
"name" : "New York",
"number" : "732921",
"center" : {
"latitude" : 38.895111,
"longitude" : -77.036667
}
},
{
"name" : "San Francisco",
"number" : "298732",
"center" : {
"latitude" : 37.783333,
"longitude" : -122.416667
}
}
]
すでに述べたように、JsonMappingException: out of START_ARRAY token
がObject {}
を期待しているのに対して、Array [{}]
例外がJacksonのオブジェクトマッパーによって投げられました。
もっと簡単な解決策は、メソッドgetLocations
を次のように置き換えることです。
public static List<Location> getLocations(InputStream inputStream) {
ObjectMapper objectMapper = new ObjectMapper();
try {
TypeReference<List<Location>> typeReference = new TypeReference<>() {};
return objectMapper.readValue(inputStream, typeReference);
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
一方、Location
のようなpojoがなければ、次のようにします。
TypeReference<List<Map<String, Object>>> typeReference = new TypeReference<>() {};
return objectMapper.readValue(inputStream, typeReference);
私はJSONLint.comからjsonを検証し、それを修正するようにこの問題を分類しました。そしてこれは同じコードです。
String jsonStr = "[{\r\n" + "\"name\":\"New York\",\r\n" + "\"number\": \"732921\",\r\n"+ "\"center\": {\r\n" + "\"latitude\": 38.895111,\r\n" + " \"longitude\": -77.036667\r\n" + "}\r\n" + "},\r\n" + " {\r\n"+ "\"name\": \"San Francisco\",\r\n" +\"number\":\"298732\",\r\n"+ "\"center\": {\r\n" + " \"latitude\": 37.783333,\r\n"+ "\"longitude\": -122.416667\r\n" + "}\r\n" + "}\r\n" + "]";
ObjectMapper mapper = new ObjectMapper();
MyPojo[] jsonObj = mapper.readValue(jsonStr, MyPojo[].class);
for (MyPojo itr : jsonObj) {
System.out.println("Val of name is: " + itr.getName());
System.out.println("Val of number is: " + itr.getNumber());
System.out.println("Val of latitude is: " +
itr.getCenter().getLatitude());
System.out.println("Val of longitude is: " +
itr.getCenter().getLongitude() + "\n");
}
注:MyPojo[].class
は、jsonプロパティの取得メソッドおよび設定メソッドを持つクラスです。
結果:
Val of name is: New York
Val of number is: 732921
Val of latitude is: 38.895111
Val of longitude is: -77.036667
Val of name is: San Francisco
Val of number is: 298732
Val of latitude is: 37.783333
Val of longitude is: -122.416667