Java Type Generic as Argument for GSON

46,243

Solution 1

Since gson 2.8.0, you can use TypeToken#getParametized((Type rawType, Type... typeArguments)) to create the typeToken, then getType() should do the trick.

For example:

TypeToken.getParameterized(List.class, myType).getType();

Solution 2

Generics work at compile-time. The reason super-type tokens work, is because (anonymous) inner classes can access the type arguments to their generic superclasses (superinterfaces), which in turn are stored directly in the bytecode metadata.

Once your .java source file is compiled, the type parameter <T> is obviously thrown away. Since it is not known at compile time, it cannot be stored in bytecode, so it's erased and Gson can't read it.

UPDATE

After newacct's answer, I tried to implement what he suggested in his option 2, ie implementing a ParameterizedType. The code looks like this (here is a basic test):

class ListOfSomething<X> implements ParameterizedType {

    private Class<?> wrapped;

    public ListOfSomething(Class<X> wrapped) {
        this.wrapped = wrapped;
    }

    public Type[] getActualTypeArguments() {
        return new Type[] {wrapped};
    }

    public Type getRawType() {
        return List.class;
    }

    public Type getOwnerType() {
        return null;
    }

}

the purpose of this code, is to be used inside getFromJsonList():

public List<T> fromJsonList(String json, Class<T> klass) {
    Gson gson = new Gson();
    return gson.fromJson(json, new ListOfSomething<T>(klass));
}

Even if the technique works and is indeed very clever (I didn't know it and I would have never thinked of it), this is the final accomplishment:

List<Integer> list = new Factory<Integer>()
         .getFromJsonList(text, Integer.class)

instead of

List<Integer> list = new Gson().fromJson(text,
         new TypeToken<List<Integer>>(){}.getType());

To me, all this wrapping in useless, even if I agree that TypeTokens make the code look nasty :P

Solution 3

public static final <T> List<T> getList(final Class<T[]> clazz, final String json)
{
    final T[] jsonToObject = new Gson().fromJson(json, clazz);

    return Arrays.asList(jsonToObject);
}

Example:

getList(MyClass[].class, "[{...}]");

Solution 4

Here is the full code base on great answer from @oldergod

public <T> List<T> fromJSonList(String json, Class<T> myType) {
    Gson gson = new Gson();
    Type collectionType = TypeToken.getParameterized(List.class, myType).getType();
    return gson.fromJson(json, collectionType);
}

Using

List<MyType> myTypes = parser.fromJSonList(jsonString, MyType.class);

Hope it help

Solution 5

I've taken Raffaele's approach one step further and generified the class, so that it works with every class A, where B is a non-parameterized class. Might be useful for Sets and other Collections.

    public class GenericOf<X, Y> implements ParameterizedType {

    private final Class<X> container;
    private final Class<Y> wrapped;

    public GenericOf(Class<X> container, Class<Y> wrapped) {
        this.container = container;
        this.wrapped = wrapped;
    }

    public Type[] getActualTypeArguments() {
        return new Type[]{wrapped};
    }

    public Type getRawType() {
        return container;
    }

    public Type getOwnerType() {
        return null;
    }

}
Share:
46,243
Rodrigo Asensio
Author by

Rodrigo Asensio

dad, aws , cloud

Updated on June 23, 2020

Comments

  • Rodrigo Asensio
    Rodrigo Asensio almost 4 years

    In GSON to get a list of objects you do

    Gson gson = new Gson();
    Type token = new TypeToken<List<MyType>>(){}.getType();
    return gson.fromJson(json, token);
    

    It works great, but I want to go further and have MyType parametrized so I can have a common function to parse list of objects with this code

    // the common function 
    public <T> List<T> fromJSonList(String json, Class<T> type) {
      Gson gson = new Gson();
      Type collectionType = new TypeToken<List<T>>(){}.getType();
      return gson.fromJson(json, collectionType);
    }
    
    // the call
    List<MyType> myTypes = parser.fromJSonList(jsonString, MyType.class);
    

    Sadly returns an array of StringMaps, not the type. T is being interpreted as another generic type, not my type. Any workaround ?