Java Json数据传输
我需要实现 Java、JSON 来进行数据传输。如何在以下矢量对象上生成 JSON 并从 JSON 获取对象?
vc.add("Vector Object 1");
vc.add("Vector Object 2");
vc.add("Vector Object 3");
vc.add("Vector Object 4");
vc.add("Vector Object 5");
谢谢
I need to implement Java,JSON for Data Transfer. How do i generate JSON on the below vector objects and get the objects back from JSON?
vc.add("Vector Object 1");
vc.add("Vector Object 2");
vc.add("Vector Object 3");
vc.add("Vector Object 4");
vc.add("Vector Object 5");
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Google 的 gson 库是另一种选择。
Google's gson library is another alternative.
你可以使用 org.json.jar
或字符串缓冲区。
you can use org.json.jar
or StringBuffer.
这是 GSON 的教程首先,将 JSON 字符串解析为对象。尽管您的要求相反,但仍然很方便。 :)
Here is a tutorial for GSON to get you started, parsing a JSON String into an object. Though your requirement is the reverse, still handy. :)