使用Jackson& message解析JSON文件中的内容时出现问题- JsonMappingException -无法反序列化,因为START_ARRAY标记已用完

xzv2uavs  于 2022-11-08  发布在  其他
关注(0)|答案(5)|浏览(257)

给定以下.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:无法反序列化的示例
在[源:资源管理器$资源输入流@416a5850;行:5,列:二十五]
(通过参考链:地点[“中心”])

qxgroojn

qxgroojn1#

Jackson对象Map器引发了JsonMappingException: out of START_ARRAY token异常,因为它需要Object {},但在响应中找到了Array [{}]
这可以通过在geForObject("url",Object[].class)的参数中将Object替换为Object[]来解决。参考资料:

  1. Ref.1
  2. Ref.2
  3. Ref.3
vxf3dgd4

vxf3dgd42#

您的JSON字符串格式错误:center的类型是无效对象的数组。在longitudelatitude周围的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
            }
    }
]
xmq68pz9

xmq68pz93#

我把这个问题分类为验证www.example.com的jsonJSONLint.com,然后纠正它。这是相同的代码。

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属性的getter和setter的类。
结果:

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
ih99xse1

ih99xse14#

如上所述,JsonMappingException: out of START_ARRAY token异常是由Jackson对象Map器抛出的,因为它期望的是Object {},而它在响应中找到的是Array [{}]
一个更简单的解决方案是将方法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);
pwuypxnk

pwuypxnk5#

例如:
资料类别

data class ToDo(
var id: Int, 
var text: String?, 
var completed: Boolean?) {}

当您使用ToDo::class.java但不使用Array::class.java作为json清单时,会掷回上述还原序列化错误

不起作用

private val mapper = ObjectMapper().registerKotlinModule()
    .....
    val todo= mapper.readValue(response.body(), ToDo::class.java)

异常错误:无法从[源:(字符串)"[{“id”:14,“text”:“TEST”,“completed”:true},{“id”:13,“text”:“TEST”,“completed”:true},{“id”:19,“text”:“TEST”,“completed”:true”[截断了84个字符];行:1,列:1】

工作

private val mapper = ObjectMapper().registerKotlinModule()
.....
val todos = mapper.readValue(response.body(), Array<ToDo>::class.java)

相关问题