我有以下两种类型的 JSON 字符串,它们都有一个“type”字段,但“content”字段具有不同的结构。
{"type": "Login", "content": {"username": "a", "password": "b"}}
{"type": "Forward", "content": {"deviceId": "a", "password": "b"}}
Run Code Online (Sandbox Code Playgroud)
我想将它们解析为 Java 对象。现在我有两节课:
class Login {
String username;
String password;
}
class Forward {
String deviceId;
}
Run Code Online (Sandbox Code Playgroud)
现在的问题是,我必须先解析 json 消息的“部分”(即“类型”部分),然后才能决定使用哪个类来继续解析“内容”。
有没有办法进行这种“两步”解析?
我尝试了以下方法:
首先将 json 消息解析为此类的实例:
class Request {
RequesType type;
String content;
}
Run Code Online (Sandbox Code Playgroud)
然后根据类的解析“type”字段,我可以决定使用哪个类,即使用res = gson.fromJson(request.content, Forward.class);or res = gson.fromJson(content, Login.class);
但我传入的 json 是
{"type": "Forward", "content":{"deviceId":"1"}}
Run Code Online (Sandbox Code Playgroud)
我收到的错误是预期的字符串,但实际上是对象,所以我不知道如何继续。任何建议将不胜感激!
也许您想使用 GSON 的RuntimeTypeAdapterFactory。它允许您从类型字段自动确定要反序列化的类的类型:默认情况下方便地命名为类型。
为了让 GSON 拥有反序列化的继承权,我建议对 POJO 进行一些小的更改。创建类Request:
@Getter @Setter
public class Request {
private String type;
@Getter @Setter
public static class Content {
String password;
}
}
Run Code Online (Sandbox Code Playgroud)
覆盖它和每个请求类型的内容,例如:
@Getter @Setter
public class ForwardRequest extends Request {
@Getter @Setter
public static class ForwardContent extends Content {
private String deviceId;
}
private ForwardContent content;
}
Run Code Online (Sandbox Code Playgroud)
和
@Getter @Setter
public class LoginRequest extends Request {
@Getter @Setter
public static class LoginContent extends Content {
private String username;
}
private LoginContent content;
}
Run Code Online (Sandbox Code Playgroud)
对于上面的类,它只是:
@Test
public void test() {
// Tell the top class
RuntimeTypeAdapterFactory<Request> rttaf = RuntimeTypeAdapterFactory.of(Request.class)
// Register inheriting types and the values per type field
.registerSubtype(ForwardRequest.class, "Forward")
.registerSubtype(LoginRequest.class, "Login");
Gson gson = new GsonBuilder().setPrettyPrinting()
.registerTypeAdapterFactory(rttaf)
.create();
// Constructed an array of your two types to be deserialized at the same time
String jsonArr = "["
+ "{\"type\": \"Login\", \"content\": {\"username\": \"a\", \"password\": \"b\"}}"
+ ","
+ "{\"type\": \"Forward\", \"content\": {\"deviceId\": \"a\", \"password\": \"b\"}}"
+ "]";
// Deserialize the array as Request[]
Request[] requests = gson.fromJson(jsonArr, Request[].class);
log.info("{}", requests[0].getClass());
log.info("{}", requests[1].getClass());
}
Run Code Online (Sandbox Code Playgroud)
上述的 Outpur 类似于:
类 org.example.gson.LoginRequest
类 org.example.gson.ForwardRequest
您只需复制答案顶部链接中提供的文件即可包含RuntimeTypeAdapterFactory到您的项目中。
更新:关于反序列化type或包含有关类型信息的任何其他字段:GSON 故意将其遗漏。它是一种瞬态场,不是吗?在反序列化之前你需要知道 的值type,这样 GSON 就不再需要去反序列化它了。
作为另一个例子 - 为了澄清这一点 - 如果您更改测试字符串,例如:
String jsonArr = "["
+ "{\"type\": \"LoginRequest\", \"content\": {\"username\": \"a\", \"password\": \"b\"}}"
+ ","
+ "{\"type\": \"ForwardRequest\", \"content\": {\"deviceId\": \"a\", \"password\": \"b\"}}"
+ "]";
Run Code Online (Sandbox Code Playgroud)
因此该类型包含类的简单名称(通常是这种情况),您可以像这样注册子类型:
.registerSubtype(ForwardRequest.class)
.registerSubtype(LoginRequest.class);
Run Code Online (Sandbox Code Playgroud)
GSON 期望类简单名称作为 JSON 类型属性的值。为什么要将类名保存在单独的字段中,因为它是可获取的Class.getSimpleName()?
但是,您当然有时可能需要将其序列化给其他客户端。
| 归档时间: |
|
| 查看次数: |
1379 次 |
| 最近记录: |