JAVA-JSON、XML互轉-【粗暴應用分享】
阿新 • • 發佈:2019-02-14
其實很多時候,我們只需要魚,而不是漁,吶,給你魚。
在平時的開發中,有時候會用到JSON和XML的互轉
- net.sf.json-lib.json-lib包提供一些互轉的方法;
- com.alibaba.fastjson並沒有提供;
但是現在用FastJSON的人越來越多,好多人在面臨到JSON到XML互轉的時候還是有些束手無策,現在寫一個特別好用的工具類,分享給大家,一如既往的粗暴,好用。
1、首先,推薦你用maven,然後不用多講
<!-- https://mvnrepository.com/artifact/de.odysseus.staxon/staxon -->
<dependency>
<groupId>de.odysseus.staxon</groupId>
<artifactId>staxon</artifactId>
<version>1.3</version>
</dependency>
這個複製貼上丟到pom.xml檔案裡面,然後開始直接丟程式碼:
/**
* @ClassName StaxonUtils
* @Description 實現JSON--XML互轉
* @author watermelon_code
* @Date 2017年7月19日 上午10:49:48
* @version 1.0.0
*/
public class StaxonUtils {
/**
* @Description: json string convert to xml string
* @author watermelon_code
* @date 2017年7月19日 上午10:50:32
*/
public static String json2xml(String json) {
StringReader input = new StringReader(json);
StringWriter output = new StringWriter();
JsonXMLConfig config = new JsonXMLConfigBuilder().multiplePI(false).repairingNamespaces(false).build();
try {
XMLEventReader reader = new JsonXMLInputFactory(config).createXMLEventReader(input);
XMLEventWriter writer = XMLOutputFactory.newInstance().createXMLEventWriter(output);
writer = new PrettyXMLEventWriter(writer);
writer.add(reader);
reader.close();
writer.close();
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
output.close();
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return output.toString();
}
/**
* @Description: json string convert to xml string ewidepay ues only
* @author watermelon_code
* @date 2017年7月19日 上午10:50:32
*/
public static String json2xmlPay(String json) {
StringReader input = new StringReader(json);
StringWriter output = new StringWriter();
JsonXMLConfig config = new JsonXMLConfigBuilder().multiplePI(false).repairingNamespaces(false).build();
try {
XMLEventReader reader = new JsonXMLInputFactory(config).createXMLEventReader(input);
XMLEventWriter writer = XMLOutputFactory.newInstance().createXMLEventWriter(output);
writer = new PrettyXMLEventWriter(writer);
writer.add(reader);
reader.close();
writer.close();
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
output.close();
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (output.toString().length() >= 38) {// remove <?xml version="1.0" encoding="UTF-8"?>
return "<xml>" + output.toString().substring(39) + "</xml>";
}
return output.toString();
}
/**
* @Description: xml string convert to json string
* @author watermelon_code
* @date 2017年7月19日 上午10:50:46
*/
public static String xml2json(String xml) {
StringReader input = new StringReader(xml);
StringWriter output = new StringWriter();
JsonXMLConfig config = new JsonXMLConfigBuilder().autoArray(true).autoPrimitive(true).prettyPrint(true).build();
try {
XMLEventReader reader = XMLInputFactory.newInstance().createXMLEventReader(input);
XMLEventWriter writer = new JsonXMLOutputFactory(config).createXMLEventWriter(output);
writer.add(reader);
reader.close();
writer.close();
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
output.close();
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return output.toString();
}
/**
* @Description: 去掉轉換xml之後的換行和空格
* @author watermelon_code
* @date 2017年8月9日 下午4:05:44
*/
public static String json2xmlReplaceBlank(String json) {
String str = StaxonUtils.json2xml(json);
String dest = "";
if (str != null) {
Pattern p = Pattern.compile("\\s*|\t|\r|\n");
Matcher m = p.matcher(str);
dest = m.replaceAll("");
}
return dest;
}
}
看效果吧:
public static void main(String[] args) {
JSONObject json = new JSONObject();
json.put("name", "jack");
json.put("age", 25);
String xmlstr = "<xml><ToUserName><![CDATA[toUser]]></ToUserName><FromUserName><![CDATA[fromUser]]></FromUserName><CreateTime>1348831860</CreateTime><MsgType><![CDATA[text]]></MsgType><Content><![CDATA[thisisatest]]></Content><MsgId>1234567890123456</MsgId></xml>";
System.out.println("JSON-->XML:");
System.out.println("JSON:" + json.toJSONString());
System.out.println("---------------------------------------------------------------");
System.out.println("普通轉XML帶格式:\n" + StaxonUtils.json2xml(json.toJSONString()));
System.out.println("---------------------------------------------------------------");
System.out.println("轉XML去掉頭部、前後補充<XML>:\n" + StaxonUtils.json2xmlPay(json.toJSONString()));
System.out.println("---------------------------------------------------------------");
System.out.println("普通轉XML去掉空格換行:\n" + StaxonUtils.json2xmlReplaceBlank(json.toJSONString()));
System.out.println("---------------------------------------------------------------");
System.out.println("XML轉JSON:\n" + StaxonUtils.xml2json(xmlstr));
}
執行結果:
JSON-->XML:
JSON:{"name":"jack","age":25}
---------------------------------------------------------------
普通轉XML帶格式:
<?xml version="1.0" encoding="UTF-8"?>
<name>jack</name>
<age>25</age>
---------------------------------------------------------------
轉XML去掉頭部、前後補充<XML>:
<xml><name>jack</name>
<age>25</age>
</xml>
---------------------------------------------------------------
普通轉XML去掉空格換行:
<?xmlversion="1.0"encoding="UTF-8"?><name>jack</name><age>25</age>
---------------------------------------------------------------
XML轉JSON:
{
"xml" : {
"ToUserName" : "toUser",
"FromUserName" : "fromUser",
"CreateTime" : 1348831860,
"MsgType" : "text",
"Content" : "thisisatest",
"MsgId" : 1234567890123456
}
}