Gson 라이브러리는 Gson TypeToken 클래스를 생성하고 클래스 유형을 전달하여 일반 유형을 저장하는 com.google.gson.reflect.TypeToken이라는 클래스를 제공합니다. 이 유형을 사용하면 Gson은 일반 클래스에 전달된 클래스를 알 수 있습니다.
public class TypeToken<T> extends Object
아래 예에서 JSON 배열을 일반 유형 목록으로 역직렬화할 수 있습니다.
import java.lang.reflect.Type; import java.util.*; import com.google.gson.*; import com.google.gson.reflect.*; public class JSONArrayToListTest { public static void main(String args[]) throws Exception { String jsonStr = "[{\"name\":\"Adithya\", \"course\":\"Java\"}," + "{\"name\":\"Ravi\", \"course\":\"Python\"}]"; Type listType = new TypeToken<ArrayList<Student>>() {}.getType(); List<Student> students = new Gson().fromJson(jsonStr, listType); System.out.println(students); } } // Student class class Student { String name; String course; @Override public String toString() { return "Student [name=" + name + ", course=" + course + "]"; } }
[Student [name=Adithya, course=Java], Student [name=Ravi, course=Python]]
위 내용은 JSON 배열을 Java의 일반 유형 목록으로 역직렬화하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!