我有一个List,我需要使用GSON转换为JSON对象。我的JSON对象中包含JSON数组。
public class DataResponse {
private List<ClientResponse> apps;
// getters and setters
public static class ClientResponse {
private double mean;
private double deviation;
private int code;
private String pack;
private int version;
// getters and setters
}
}
下面是我需要将List转换为JSON数据的代码,其中包含JSON数组 -
public void marshal(Object response) {
List<DataResponse.ClientResponse> clientResponse = ((DataResponse) response).getClientResponse();
// now how do I convert clientResponse list to JSON Object which has JSON Array in it using GSON?
// String jsonObject = ??
}
截至目前,我在List中只有两个项目 - 所以我需要这样的JSON对象 -
{
"apps":[
{
"mean":1.2,
"deviation":1.3
"code":100,
"pack":"hello",
"version":1
},
{
"mean":1.5,
"deviation":1.1
"code":200,
"pack":"world",
"version":2
}
]
}
这样做的最佳方式是什么?
答案 0 :(得分:47)
google gson documentation提供了一个关于如何将列表实际转换为json字符串的示例:
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);
您需要在toJson
方法中设置列表类型并传递列表对象以将其转换为json字符串,反之亦然。
答案 1 :(得分:26)
如果response
方法中的marshal
是DataResponse
,那么您应该序列化的是什么。
Gson gson = new Gson();
gson.toJson(response);
这将为您提供您正在寻找的JSON输出。
答案 2 :(得分:4)
假设你也希望以格式
获得json{
"apps": [
{
"mean": 1.2,
"deviation": 1.3,
"code": 100,
"pack": "hello",
"version": 1
},
{
"mean": 1.5,
"deviation": 1.1,
"code": 200,
"pack": "world",
"version": 2
}
]
}
而不是
{"apps":[{"mean":1.2,"deviation":1.3,"code":100,"pack":"hello","version":1},{"mean":1.5,"deviation":1.1,"code":200,"pack":"world","version":2}]}
您可以使用漂亮的打印。为此,请使用
Gson gson = new GsonBuilder().setPrettyPrinting().create();
String json = gson.toJson(dataResponse);
答案 3 :(得分:-2)
我们还可以使用另一种解决方法,首先创建myObject数组,然后将它们转换为列表。
final Optional<List<MyObject>> sortInput = Optional.ofNullable(jsonArgument)
.map(jsonArgument -> GSON.toJson(jsonArgument, ArrayList.class))
.map(gson -> GSON.fromJson(gson, MyObject[].class))
.map(myObjectArray -> Arrays.asList(myObjectArray));
好处: