我正在尝试使用 Jackson 解析器解析 JSONList。如果列表包含多个元素,则解析工作正常。
String json = "{\"students\":[{\"id\":\"1\",\"name\":\"A\"}, {\"id\":\"2\",\"name\":\"B\"}]}";
如果只有一个元素,那么我们将得到一个只包含一个 json 对象的 json。
String json = "{\"students\":{\"id\":\"1\",\"name\":\"A\"}}";
当时我收到以下错误
12-10 15:49:01.527: W/System.err(18923): org.codehaus.jackson.map.JsonMappingException: Can not deserialize instance of java.util.ArrayList out of START_OBJECT token
我正在使用以下代码:
@JsonIgnoreProperties(ignoreUnknown = true)
public class Student {
@JsonProperty("id")
public String id;
@JsonProperty("name")
public String name;
}
@JsonIgnoreProperties(ignoreUnknown = true)
public class StudentList {
@JsonProperty("students")
ArrayList<Student> students = new ArrayList<Student>();
}
public class JacksonTest extends Activity {
StudentList studentList;
//String json = "{\"students\":[{\"id\":\"1\",\"name\":\"A\"}, {\"id\":\"2\",\"name\":\"B\"}]}";
String json = "{\"students\":{\"id\":\"1\",\"name\":\"A\"}}";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_jackson_test);
ObjectMapper objectMapper = new ObjectMapper();
JsonFactory jf = new JsonFactory();
try {
JsonParser jp = jf.createJsonParser(json);
jp.setFeature(JsonParser.Feature.ALLOW_UNQUOTED_CONTROL_CHARS,true);
studentList = objectMapper.readValue(jp, StudentList.class);
System.out.println("Size :"+studentList.students.size());
}
catch (JsonParseException e) {
e.printStackTrace();
}
catch (JsonMappingException e) {
e.printStackTrace();
}
catch (IOException e) {
e.printStackTrace();
}
}
}
请帮我解决这个问题。实际上我想解析包含大量列表的非常大的 json。
提前致谢, Sudheesh B