美文网首页
XML转JSON

XML转JSON

作者: gmdqtd | 来源:发表于2020-02-21 18:40 被阅读0次
    1、添加MAVNE依赖
    <dependency>
    <groupId>org.json</groupId>
    <artifactId>json</artifactId>
    <version>20151123</version>
    </dependency>
    
    2、JAVA代码实现
    xml字符串转换为json字符串代码实现如下:
    import org.json.JSONException;
    import org.json.JSONObject;
    import org.json.XML;
    public class JsonUtils {
    public static String xml2jsonString(String xml)throws JSONException{
    JSONObject xmlJSONObj = XML.toJSONObject(xml);
    return xmlJSONObj.toString();
    }
    }
    

    相关文章

      网友评论

          本文标题:XML转JSON

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