カスタムデシリアライザーでこれを行うことができます。最初に、JSON を表現できるデータ モデルを作成する必要があります。
class JsonEntity {
private List<Movie> movies;
public List<Movie> getMovies() {
return movies;
}
public void setMovies(List<Movie> movies) {
this.movies = movies;
}
@Override
public String toString() {
return "JsonEntity [movies=" + movies + "]";
}
}
class Movie {
private String title;
private Profile in_wanted;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public Profile getIn_wanted() {
return in_wanted;
}
public void setIn_wanted(Profile in_wanted) {
this.in_wanted = in_wanted;
}
@Override
public String toString() {
return "Movie [title=" + title + ", in_wanted=" + in_wanted + "]";
}
}
class Profile {
private boolean value;
public boolean isValue() {
return value;
}
public void setValue(boolean value) {
this.value = value;
}
@Override
public String toString() {
return String.valueOf(value);
}
}
必要なクラスがすべて揃ったら、新しいカスタム デシリアライザーを実装する必要があります。
class ProfileJsonDeserializer implements JsonDeserializer<Profile> {
@Override
public Profile deserialize(JsonElement jsonElement, Type type,
JsonDeserializationContext context) throws JsonParseException {
if (jsonElement.isJsonPrimitive()) {
return null;
}
return context.deserialize(jsonElement, JsonProfile.class);
}
}
class JsonProfile extends Profile {
}
JsonProfile
クラスの様子をご覧ください。「デシリアライゼーション ループ」(トリッキーな部分) を回避するために作成する必要があります。
これで、テスト メソッドを使用してソリューションをテストできます。
GsonBuilder builder = new GsonBuilder();
builder.registerTypeAdapter(Profile.class, new ProfileJsonDeserializer());
Gson gson = builder.create();
JsonEntity jsonEntity = gson.fromJson(new FileReader("/tmp/json.txt"),
JsonEntity.class);
System.out.println(jsonEntity);