Retrofit에서 GSON을 사용하여 중첩 JSON 개체 추출
중첩 데이터가 포함된 JSON 개체로 응답하는 API를 사용하는 경우 관련 데이터를 직접 추출하고 조작합니다. 원하는 데이터가 중간 "콘텐츠" 필드에 묻혀 있는 경우 특히 그렇습니다.
이러한 장애물을 극복하기 위해 GSON은 응답 JSON에서 특정 필드를 추출하는 데 사용할 수 있는 사용자 정의 디시리얼라이저를 생성하는 메커니즘을 제공합니다. .
사용자 정의 디시리얼라이저 생성
사용자 정의를 생성하려면 deserializer의 경우 아래와 같이 JsonDeserializer 인터페이스를 구현하는 새 클래스를 정의합니다.
class MyDeserializer implements JsonDeserializer<Content> { @Override public Content deserialize(JsonElement je, Type type, JsonDeserializationContext jdc) throws JsonParseException { // Get the "content" element from the parsed JSON JsonElement content = je.getAsJsonObject().get("content"); // Deserialize it. Use a new instance of Gson to avoid infinite recursion return new Gson().fromJson(content, Content.class); } }
다양한 콘텐츠 유형을 위한 일반 Deserializer
메시지 유형이 다르지만 모두 "콘텐츠" 필드를 공유하므로 일반 deserializer:
class MyDeserializer<T> implements JsonDeserializer<T> { @Override public T deserialize(JsonElement je, Type type, JsonDeserializationContext jdc) throws JsonParseException { // Get the "content" element from the parsed JSON JsonElement content = je.getAsJsonObject().get("content"); // Deserialize it. Use a new instance of Gson to avoid infinite recursion return new Gson().fromJson(content, type); } }
Retrofit에 Deserializer 등록
deserializer가 생성되면 Retrofit 인스턴스를 생성할 때 GsonConverterFactory에 등록하세요.
Retrofit retrofit = new Retrofit.Builder() .baseUrl(url) .addConverterFactory(GsonConverterFactory.create(gson)) .build();
예시 사용법:
사용자 정의 역직렬 변환기를 사용하면 이제 JSON 응답을 원하는 POJO로 직접 역직렬화할 수 있습니다.
Content c = gson.fromJson(myJson, Content.class);
사용자 정의 역직렬 변환기를 활용하면 다음과 같은 유연성을 얻을 수 있습니다. 특정 요구 사항에 맞게 JSON 구문 분석 프로세스를 맞춤화하여 JSON 응답 내에 중첩된 데이터에 쉽게 액세스하고 조작할 수 있습니다.
위 내용은 사용자 정의 GSON 역직렬 변환기를 사용하여 개조 응답에서 중첩된 JSON 개체를 추출하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!