在Java中将XML转换为JSON的最快方法

在Java中将XML转换为JSON的最快方法,第1张

在Java中将XML转换为JSON的最快方法

Java中的 JSON有一些很棒的资源。

Maven依赖项:

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

XML.java 是您要寻找的课程:

import org.json.JSONObject;import org.json.XML;public class Main {    public static int PRETTY_PRINT_INDENT_FACTOR = 4;    public static String TEST_XML_STRING =        "<?xml version="1.0" ?><test attrib="moretest">Turn this to JSON</test>";    public static void main(String[] args) {        try { JSonObject xmlJSonObj = XML.toJSonObject(TEST_XML_STRING); String jsonPrettyPrintString = xmlJSONObj.toString(PRETTY_PRINT_INDENT_FACTOR); System.out.println(jsonPrettyPrintString);        } catch (JSonException je) { System.out.println(je.toString());        }    }}

输出为:

{"test": {    "attrib": "moretest",    "content": "Turn this to JSON"}}


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存