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"}}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)