web-dev-qa-db-ja.com

JSON文字列をJavaオブジェクトのリストに変換する方法は?

これは私のJSON配列です:-

[ 
    {
        "firstName" : "abc",
        "lastName" : "xyz"
    }, 
    {
        "firstName" : "pqr",
        "lastName" : "str"
    } 
]

Stringオブジェクトにこれがあります。次に、それをJavaオブジェクトに変換し、Javaオブジェクトのリストに保存します。例えばStudentオブジェクト内。以下のコードを使用して、Javaオブジェクトのリストに変換しています:-

ObjectMapper mapper = new ObjectMapper();
StudentList studentList = mapper.readValue(jsonString, StudentList.class);

私のリストクラスは:-

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
23
Nitesh

JacksonにStudentListの解析を依頼しています。代わりに(学生の)Listを解析するように伝えます。 Listは汎用なので、通常は TypeReference を使用します

List<Student> participantJsonList = mapper.readValue(jsonString, new TypeReference<List<Student>>(){});
44

このシナリオではGsonを使用することもできます。

Gson gson = new Gson();
NameList nameList = gson.fromJson(data, NameList.class);

List<Name> list = nameList.getList();

NameListクラスは次のようになります。

class NameList{
 List<Name> list;
 //getter and setter
}
4
Pankaj Jaiswal
StudentList studentList = mapper.readValue(jsonString,StudentList.class);

これをこれに変えて

StudentList studentList = mapper.readValue(jsonString, new TypeReference<List<Student>>(){});
0
monstereo

jsonArrayToObjectListと呼ばれる以下のメソッドを作成しました。ファイル名を取得する便利な静的クラスで、ファイルにはJSON形式の配列が含まれます。

 List<Items> items = jsonArrayToObjectList(
            "domain/ItemsArray.json",  Item.class);

    public static <T> List<T> jsonArrayToObjectList(String jsonFileName, Class<T> tClass) throws IOException {
        ObjectMapper mapper = new ObjectMapper();
        final File file = ResourceUtils.getFile("classpath:" + jsonFileName);
        CollectionType listType = mapper.getTypeFactory()
            .constructCollectionType(ArrayList.class, tClass);
        List<T> ts = mapper.readValue(file, listType);
        return ts;
    }
0
javaPlease42

JSONのPOJOクラス(Student.class)を作成することでこれを解決しました。メインクラスは問題のJSONから値を読み取るために使用されます。

   **Main Class**

    public static void main(String[] args) throws JsonParseException, 
       JsonMappingException, IOException {

    String jsonStr = "[ \r\n" + "    {\r\n" + "        \"firstName\" : \"abc\",\r\n"
            + "        \"lastName\" : \"xyz\"\r\n" + "    }, \r\n" + "    {\r\n"
            + "        \"firstName\" : \"pqr\",\r\n" + "        \"lastName\" : \"str\"\r\n" + "    } \r\n" + "]";

    ObjectMapper mapper = new ObjectMapper();

    List<Student> details = mapper.readValue(jsonStr, new 
      TypeReference<List<Student>>() {      });

    for (Student itr : details) {

        System.out.println("Value for getFirstName is: " + 
                  itr.getFirstName());
        System.out.println("Value for getLastName  is: " + 
                 itr.getLastName());
    }
}

**RESULT:**
         Value for getFirstName is: abc
         Value for getLastName  is: xyz
         Value for getFirstName is: pqr
         Value for getLastName  is: str


 **Student.class:**

public class Student {
private String lastName;

private String firstName;

public String getLastName() {
    return lastName;
}

public String getFirstName() {
    return firstName;
} }
0
Atul Sharma