java xml 转 json

Posted Googler

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java xml 转 json相关的知识,希望对你有一定的参考价值。

            <dependency>
                <groupId>org.json</groupId>
                <artifactId>json</artifactId>
                <version>20170516</version>
            </dependency>

  

System.out.println(org.json.XML.toJSONObject("<note>\n" + "<to>Tove</to>\n" + "<from>Jani</from>\n"
                + "<heading>Reminder</heading>\n" + "<body>Don‘t forget me this weekend!</body>\n" + "</note>")
                .toString());

  

以上是关于java xml 转 json的主要内容,如果未能解决你的问题,请参考以下文章

实用代码片段将json数据绑定到html元素 (转)

Java XML转JSON

xml转json

xml转json的方法

xml转json的两种方法

java xml 转 json