gpt4 book ai didi

java - GSON:使用 java.util.TreeSet 序列化对象

转载 作者:搜寻专家 更新时间:2023-11-01 02:41:07 24 4
gpt4 key购买 nike

如何正确序列化 TreeSet?为了让您了解什么不起作用,我设置了这个小演示项目。主要目标是打印 QData 对象的 JSON 字符串。

App.java

package de.company.gsonserializer;

import java.util.ArrayList;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Map;
import java.util.SortedSet;
import java.util.TreeSet;

public class App
{
public static void main( String[] args )
{
QData qdata = new QData();

ArrayList<LData> arrayList = new ArrayList<LData>(1);

LData l = new LData();
Map<String, String> unsortedBuabList = new HashMap<String, String>();
for (int i = 0; i < 5; i++) {
unsortedBuabList.put("Key-" + i, "Value" + i);
}
SortedSet<Map.Entry<String, String>> sortedBuabList = new TreeSet<Map.Entry<String, String>>(
new Comparator<Map.Entry<String, String>>() {
public int compare(Map.Entry<String, String> e1, Map.Entry<String, String> e2) {
return e1.getValue().compareTo(e2.getValue());
}
});
sortedBuabList.addAll(unsortedBuabList.entrySet());
l.setBuabList(sortedBuabList);

arrayList.add(l);
qdata.setLocations(arrayList);

System.out.println( qdata.toString() );
}
}

QData.java

package de.it2media.gsonserializer;

import java.util.ArrayList;

import com.google.gson.Gson;

public class QData {

private ArrayList<LData> locations = new ArrayList<LData>(0);

public ArrayList<LData> getLocations() {
return locations;
}

public void setLocations(ArrayList<LData> locations) {
this.locations = locations;
}

@Override
public String toString(){
Gson gson = new Gson();
String thisObj = gson.toJson(this);
return thisObj;
}

}

LData.java

package de.it2media.gsonserializer;

import java.util.Map;
import java.util.SortedSet;
import java.util.TreeSet;
import java.util.Map.Entry;

public class LData {

private SortedSet<Entry<String, String>> buabList = new TreeSet<Map.Entry<String, String>>();

public SortedSet<Entry<String, String>> getBuabList() {
return buabList;
}

public void setBuabList(SortedSet<Entry<String, String>> buabList) {
this.buabList = buabList;
}

}

输出:{"locations":[{"buabList":[{},{},{},{},{}]}]}

预期输出类似于:{"locations":[{"buabList":[{"key":"Key-0","value":"Value0"},{"key": "Key-1","value":"Value1"},{"key":"Key-2","value":"Value2"},{"key":"Key-3","value": "Value3"},{"key":"Key-4","value":"Value4"}]}]}

您可能知道为什么 GSON 没有像我期望的那样工作吗?

感谢您的帮助,非常感谢!

最佳答案

您遇到的问题与 TreeSet 无关,而是因为 GSON 不知道如何以 Entry 的方式序列化 map 你想要的。因此,您需要为其编写自定义序列化程序,如下所示:

public static class EntrySerializer implements JsonSerializer<Entry<String, String>> {
@Override
public JsonElement serialize(Entry<String, String> entry, Type typeOfSrc, JsonSerializationContext context) {
JsonElement serializedKey = context.serialize(entry.getKey());
JsonElement serializedValue = context.serialize(entry.getValue());

JsonObject jsonObject = new JsonObject();
jsonObject.add("key", serializedKey);
jsonObject.add("value", serializedValue);
return jsonObject;
}
}

当您创建 Gson 对象时,您需要注册这个自定义序列化程序:

Gson gson = new GsonBuilder()
.registerTypeAdapter(Entry.class, new EntrySerializer())
.create();

您可以在 GSON documentation 中阅读有关自定义序列化器和反序列化器的更多信息.

关于java - GSON:使用 java.util.TreeSet 序列化对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32945979/

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