0

我正在接收杰克逊格式的数据,并希望将其读入我定义的 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>>(){});
4

2 回答 2

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;
    }
}

街段

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

于 2013-10-18T11:14:05.260 回答
0

StreetSegment在两个单独的类中重新定义您的模型,即Street.

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
    .
    .
    .
于 2013-10-18T11:15:06.113 回答