Jackson映射到POJO无法反序列化实例实例

时间:2013-10-18 10:58:47

标签: java android json jackson pojo

我正在接收Jackson格式的数据,并希望将其读入我已定义的POJO中。我要么严格定义POJO,要么错过了一些关键步骤。收到的数据格式如下:

{
    streetSegment: [
    {
        distance: "0.04",
        highway: "residential",
        name: "Swift",
        line: "-1.6720224 52.6251985,-1.6721061 52.6250432,-1.6721799,             52.6248908,-1.6721996 52.6247594",
        wayId: "76473524"
    },
    {
        distance: "0.05",
        highway: "residential",
        name: "Swift",
        line: "-1.6721799 52.6248908,-1.6723374 52.6248669,-1.6732035 52.6249774,-1.6734643 52.6249894",
        wayId: "76473523"
    }
    ]
}

我已将POJO定义为:

public class StreetSegment {

public static class Street {
    private String distance;
    private String highway;
    private String name;
    private String line;
    private String wayId;
    public Street() {
        super();
    }
    public String getDistance() {
        return distance;
    }
    public void setDistance(String distance) {
        this.distance = distance;
    }
    public String getHighway() {
        return highway;
    }
    public void setHighway(String highway) {
        this.highway = highway;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getLine() {
        return line;
    }
    public void setLine(String line) {
        this.line = line;
    }
    public String getWayId() {
        return wayId;
    }
    public void setWayId(String wayId) {
        this.wayId = wayId;
    }
}

}

当我使用以下行读取对象映射器时:

List<StreetSegment> list = mObjectMapper.readValue( in, new TypeReference<List<StreetSegment>>(){} );

我得到一个例外,如图所示:

10-18 12:49:57.596: W/System.err(31776): com.fasterxml.jackson.databind.JsonMappingException: Can not deserialize instance of java.util.ArrayList out of START_OBJECT token
10-18 12:49:57.596: W/System.err(31776):  at [Source: java.io.StringReader@42ea8038; line: 1, column: 1]
10-18 12:49:57.606: W/System.err(31776):    at com.fasterxml.jackson.databind.DeserializationContext.mappingException(DeserializationContext.java:575)
10-18 12:49:57.616: W/System.err(31776):    at com.fasterxml.jackson.databind.DeserializationContext.mappingException(DeserializationContext.java:569)
10-18 12:49:57.616: W/System.err(31776):    at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.handleNonArray(CollectionDeserializer.java:259)
10-18 12:49:57.626: W/System.err(31776):    at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:217)
10-18 12:49:57.626: W/System.err(31776):    at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:207)
10-18 12:49:57.636: W/System.err(31776):    at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:23)
10-18 12:49:57.636: W/System.err(31776):    at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:2888)
10-18 12:49:57.646: W/System.err(31776):    at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2041)
10-18 12:49:57.646: W/System.err(31776):    at co.uk.dominion.test.MainActivity$19._getStreetSegmentFromURL(MainActivity.java:3428)
10-18 12:49:57.646: W/System.err(31776):    at co.uk.dominion.test.MainActivity$19.doInBackground(MainActivity.java:3460)
10-18 12:49:57.656: W/System.err(31776):    at co.uk.dominion.test.MainActivity$19.doInBackground(MainActivity.java:1)
10-18 12:49:57.656: W/System.err(31776):    at android.os.AsyncTask$2.call(AsyncTask.java:287)
10-18 12:49:57.656: W/System.err(31776):    at java.util.concurrent.FutureTask.run(FutureTask.java:234)
10-18 12:49:57.656: W/System.err(31776):    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1080)
10-18 12:49:57.656: W/System.err(31776):    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:573)
10-18 12:49:57.656: W/System.err(31776):    at java.lang.Thread.run(Thread.java:856)

我还首先尝试定义为JsonNode,看看我是否能发现问题但无济于事:

JsonNode node = mObjectReader.readValue(in);
List<StreetSegment> list = mObjectMapper.readValue(node.toString(), new TypeReference<List<StreetSegment>>(){});

2 个答案:

答案 0 :(得分:3)

通过这种方式创建Street

街景

public class Street {
    private List<StreetSegment> streetSegment;

    public Street() {
        // TODO Auto-generated constructor stub
    }

    public List<StreetSegment> getStreetSegment() {
        return streetSegment;
    }

    public void setStreetSegment(List<StreetSegment> streetSegment) {
        this.streetSegment = streetSegment;
    }
}

<强> StreetSegment

public class StreetSegment {
    private String distance;
    private String highway;
    private String name;
    private String line;
    private String wayId;

    public StreetSegment() {

    }
    public String getDistance() {
        return distance;
    }
    public void setDistance(String distance) {
        this.distance = distance;
    }
    public String getHighway() {
        return highway;
    }
    public void setHighway(String highway) {
        this.highway = highway;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getLine() {
        return line;
    }
    public void setLine(String line) {
        this.line = line;
    }
    public String getWayId() {
        return wayId;
    }
    public void setWayId(String wayId) {
        this.wayId = wayId;
    }
}

要检查一下,这里是main

public static void main(String[] args) throws JsonParseException, JsonMappingException, IOException {
        String str = "{" + 
                "    \"streetSegment\": [" + 
                "        {" + 
                "            \"distance\": \"0.04\"," + 
                "            \"highway\": \"residential\"," + 
                "            \"name\": \"Swift\"," + 
                "            \"line\": \"-1.6720224 52.6251985,-1.6721061 52.6250432,-1.6721799,             52.6248908,-1.6721996 52.6247594\"," + 
                "            \"wayId\": \"76473524\"" + 
                "        }," + 
                "        {" + 
                "            \"distance\": \"0.05\"," + 
                "            \"highway\": \"residential\"," + 
                "            \"name\": \"Swift\"," + 
                "            \"line\": \"-1.6721799 52.6248908,-1.6723374 52.6248669,-1.6732035 52.6249774,-1.6734643 52.6249894\"," + 
                "            \"wayId\": \"76473523\"" + 
                "        }" + 
                "    ]" + 
                "}";
    // to simulate stream reader    
    InputStreamReader in = new InputStreamReader(new ByteArrayInputStream(str.getBytes())); 

     BufferedReader streamReader = new BufferedReader(in); 

    StringBuilder buff = new StringBuilder();

    String inputStr;
    while ((inputStr = streamReader.readLine()) != null)
        buff.append(inputStr);


    ObjectMapper mapper = new ObjectMapper();

    Street mj = mapper.readValue(buff.toString(), Street.class);

        if(mj == null){
            System.err.println("null");
        }                
    }

...检查

System.out.println(mj.getStreetSegment().get(0).getHighway());//dummy print

输出:residential

答案 1 :(得分:0)

在两个单独的课程中重新定义您的模型,即StreetSegmentStreet

public class StreetSegment {
    list<Street> street_list;

    //getters and setters
}

public class Street {
     private String distance;
     private String highway;
     private String name;
     private String line;
     private String wayId;

      //getters and setters
 }

//如果问题解决了,请跳过其余的

我猜你正在使用@RequestBody来获取请求的JSON主体。 我会这样用它:

public your_return_type your_method(@RequestBody String rb) {
    ObjectMapper om = new ObjectMapper();
    StreetSegment ss = om.readValue(rb, StreetSegment.class);

    //and the rest
    .
    .
    .