最佳答案
这是我的 JSON 数组:-
[
{
"firstName" : "abc",
"lastName" : "xyz"
},
{
"firstName" : "pqr",
"lastName" : "str"
}
]
在 String 对象中有这个。现在我想把它转换成 Java 对象并存储在 Java 对象的 List 中。例如:。在 Student 对象中。 我使用以下代码将其转换为 List of Java 对象:-
ObjectMapper mapper = new ObjectMapper();
StudentList studentList = mapper.readValue(jsonString, StudentList.class);
我的 List 类是:-
public class StudentList {
private List<Student> participantList = new ArrayList<Student>();
//getters and setters
}
我的学生目标是:-
class Student {
String firstName;
String lastName;
//getters and setters
}
我错过了什么吗? 我得到以下例外:-
Exception : com.fasterxml.jackson.databind.JsonMappingException: Can not deserialize instance of com.aa.Student out of START_ARRAY token