10

我想将 json 字符串转换为List<Someclass>使用 jackson json 库。

public static List<T> toList(String json, Class<T> type, ObjectMapperProperties objectMapperProperties){

        ObjectMapper objectMapper = ObjectMapperFactory.getObjectMapper(objectMapperProperties);

        try {
            return objectMapper.readValue(json, objectMapper.getTypeFactory().constructCollectionType(List.class, type));
        } catch (JsonParseException e) {
            e.printStackTrace();
        } catch (JsonMappingException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

所以如果我通过Attribute.classas type,那么它必须返回一个List<Attribute>.

但是,这给了我一个编译时错误

T cannot be resolved to a type

我想泛型部分在这里对我来说并不清楚。任何帮助表示赞赏。

4

1 回答 1

25

您需要T首先在您的通用方法中声明,在您的情况下,它将是:

public static <T> List<T> toList(String json, Class<T> type,  ObjectMapperProperties objectMapperProperties)

有关更多信息,请查看 oracle 文档以获取通用方法:

https://docs.oracle.com/javase/tutorial/extra/generics/methods.html

于 2016-02-25T08:45:25.740 回答