gpt4 book ai didi

java - Gson 预期为 BEGIN_ARRAY,但对于类型 Byte[] 却是 BEGIN_OBJECT

转载 作者:行者123 更新时间:2023-12-01 11:05:55 26 4
gpt4 key购买 nike

我在服务器端使用 json.net 进行序列化,在客户端 Android 应用程序上使用 Gson。我不想在服务器端进行此更改,因为我不想更改所有其他平台,只是因为我无法弄清楚如何在 Android 上执行此操作。

所以问题是我的 poco 类有一个名为“key”的 Byte[] 类型的对象,但我收到的是下面的 json 对象。

"key":{  
"$type":"Byte[]",
"$value":"R3np9gckNMgH9uoqd9quAn7WfUs09Xa+gkETDSHKd9Y="
}

当 Gson 尝试反序列化对象时,会引发以下异常:

com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 287 path $.classname.key

我想我将不得不使用一个“适配器”,就像我对下面所示的日期所做的那样,但我有点难住了。

private static class DateTypeAdapter implements com.google.gson.JsonSerializer<Date>, JsonDeserializer<Date> {
private final DateFormat dateFormat;

private DateTypeAdapter() {
dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss", Locale.US);
dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
}

@Override
public synchronized JsonElement serialize(Date date, Type type,JsonSerializationContext jsonSerializationContext) {
return new JsonPrimitive(dateFormat.format(date));
}

@Override
public synchronized Date deserialize(JsonElement jsonElement, Type type, JsonDeserializationContext jsonDeserializationContext) {
try {
return dateFormat.parse(jsonElement.getAsString());
} catch (ParseException e) {
throw new JsonParseException(e);
}
}
}

感谢您的高级帮助...

编辑代码示例:

public static <T> T deserialize(String in, Class<T> c)  {
Gson gson = new GsonBuilder().registerTypeAdapter(Date.class, new DateTypeAdapter()).create();
return gson.fromJson(in,c);
}

Json(简化):

{
"$type":"Response",
"classname":{
"$type":"ClassName",
"key":{
"$type":"Byte[]",
"$value":"R3np8gckNMgH9uoqd9quAn7WfUs08Xa+gkETDSHKd9Y="
},
},
"success":true
}

POCO:

public class Response
{
public ClassName ClassName;
}

public class ClassName
{
public byte[] key;
}

最佳答案

正如我怀疑的那样,我需要一个适配器来将 base64“byte[]”转换为真正的 byte[]。这有效,而我发现的其他解决方案则无效。

private static Gson gson = new GsonBuilder().registerTypeAdapter(byte[].class, new ByteArrayAdapter()).create();

private static class ByteArrayAdapter implements com.google.gson.JsonSerializer<byte[]>, JsonDeserializer<byte[]> {

@Override
public byte[] deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
return Base64.decode(json.getAsJsonObject().get("$value").toString().getBytes(),Base64.DEFAULT);
}

@Override
public JsonElement serialize(byte[] src, Type typeOfSrc, JsonSerializationContext context) {
return new JsonPrimitive(Base64.encodeToString(src, Base64.NO_WRAP));
}
}

关于java - Gson 预期为 BEGIN_ARRAY,但对于类型 Byte[] 却是 BEGIN_OBJECT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32953643/

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