gpt4 book ai didi

java - 使用 Struts 2 内置的 JSON 实用程序类

转载 作者:行者123 更新时间:2023-11-30 08:37:58 24 4
gpt4 key购买 nike

在一个 Struts 2 项目中,我们需要序列化和反序列化对象,因为我们的需求很简单,我们决定使用 Struts 2 JSONUtil 而不是 gson

import org.apache.struts2.json;

String json = JSONUtil.serialize(myAccountVO);
// return: {"accountNumber":"0105069413007","amount":"1500","balance":"215000"}

对于反序列化,我们面临类转换异常

    AccountVO vo =(AccountVO) JSONUtil.deserialize(json);
//Exception

我发现反序列化 返回一个包含对象属性键值的映射。所以我必须这样做:

HashMap<String,String> map = (HashMap) JSONUtil.deserialize(string)
accountVo.setAccountNumber(map.get("accountNumber"));
....

我能做得更好吗,或者我对这个实用程序的期望太高了。

最佳答案

反序列化 JSON 后,您可以使用 JSONPopulator从 map 填充 bean 属性。例如

JSONPopulator populator = new JSONPopulator();
AccountVO vo = new AccountVO();
populator.populateObject(vo, map);

关于java - 使用 Struts 2 内置的 JSON 实用程序类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36822495/

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