在GWT客户端代码中使用Gson库

在GWT客户端代码中使用Gson库,第1张

在GWT客户端代码中使用Gson库

不完全是您写的内容,但我想您的意思是如何在GWT代码中序列化/反序列化JSON?

在GWT 2.1.1中,您可以使用GWT
AutoBean框架

看到在文章的底部有它神奇的代码…

String serializeToJson(Person person) {    // Retrieve the AutoBean controller    AutoBean<Person> bean = AutoBeanUtils.getAutoBean(person);    return AutoBeanCodex.enpre(bean).getPayload();}Person deserializeFromJson(String json) {         AutoBean<Person> bean = AutoBeanCodex.depre(myFactory, Person.class, json);         return bean.as();   }

即使使用继承Person的实例,serializeToJson()也可以正常工作,但是我没有尝试deserializeFromJson …



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5426876.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存