美文网首页我爱编程
Java实现xml字符串转json对象

Java实现xml字符串转json对象

作者: robinzhang13 | 来源:发表于2018-01-02 13:58 被阅读0次

1.maven引入依赖,或引入相应jar包
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20160810</version>
</dependency>

更多版本见http://mvnrepository.com/artifact/org.json/json

2.使用方法
import org.json.JSONObject;
import org.json.XML;

String xmlStr="<?xml version='1.0' encoding='utf-8'?><note><to>George</to><from>John</from><heading>Reminder</heading><body>Don't forget the meeting!</body></note>";
JSONObject jsonObj = XML.toJSONObject(xmlStr);

相关文章

网友评论

    本文标题:Java实现xml字符串转json对象

    本文链接:https://www.haomeiwen.com/subject/nvwfnxtx.html