1. ホーム
  2. java

[解決済み] Jacksonとメッセージ付きのJSONファイルからコンテンツをパースする際の問題 - JsonMappingException -Cannot deserialize as out of START_ARRAY token

2022-05-07 10:57:14

質問

次の.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ファイルからコンテンツをパースするには、次のようにします。 ジャクソン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.JsonMappingException: のインスタンスをデシリアライズできません.

com.example.GeoPoint out of START_ARRAY token at [Source: android.content.res.AssetManager$AssetInputStream@416a5850; line: 5, column: 25]

(参照チェーン: com.example.Location["center"] を通して)

どのように解決するのですか?

JSON文字列が不正です。 center は無効なオブジェクトの配列です。置き換える []{} を中心としたJSON文字列で longitudelatitude で、これらはオブジェクトになります。

[
    {
        "name" : "New York",
        "number" : "732921",
        "center" : {
                "latitude" : 38.895111, 
                "longitude" : -77.036667
            }
    },
    {
        "name" : "San Francisco",
        "number" : "298732",
        "center" : {
                "latitude" : 37.783333, 
                "longitude" : -122.416667
            }
    }
]