gpt4 book ai didi

java - 强制使用 TypeToken?

转载 作者:搜寻专家 更新时间:2023-11-01 03:16:29 25 4
gpt4 key购买 nike

在将列表转换为 json 时,必须使用 TypeToken(如 Gson 文档中的建议)作为类型,如下所示 -

new Gson().toJson(dateRange, new TypeToken<List<String>>() {}.getType()); 

对我来说,下面的代码也有效 -

new Gson().toJson(dateRange, List.class);

只是想确保代码不会被破坏。

最佳答案

根据文档 -

If the object that your are serializing/deserializing is a ParameterizedType (i.e. contains at least one type parameter and may be an array) then you must use the toJson(Object, Type) or fromJson(String, Type) method. Here is an example for serializing and deserializing a ParameterizedType:

 Type listType = new TypeToken<List<String>>() {}.getType();
List<String> target = new LinkedList<String>();
target.add("blah");

Gson gson = new Gson();
String json = gson.toJson(target, listType);
List<String> target2 = gson.fromJson(json, listType);

这是特例,其他情况可以直接使用类类型。供引用 - http://google.github.io/gson/apidocs/com/google/gson/Gson.html

希望对你有帮助

关于java - 强制使用 TypeToken?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48580776/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com