java中 xml字符串和json字符串互相转化的所有方法
时间: 2024-03-15 16:46:41 浏览: 142
XML、JAVA、JSON多种方式互相转换
5星 · 资源好评率100%
Java中,可以使用多种方式将XML字符串转换成JSON字符串,或将JSON字符串转换成XML字符串。以下是一些常用的方法:
1. 使用第三方库
常用的XML和JSON转换库有:jackson、Gson、xmlpull、xmlbeans、dom4j、jdom等。这些库提供了各种将XML和JSON字符串互相转换的方法。例如,使用Jackson库将XML字符串转换为JSON字符串:
```java
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.dataformat.xml.XmlMapper;
String xmlString = "<person><name>John</name><age>30</age></person>";
// 将XML字符串转换为Java对象
XmlMapper xmlMapper = new XmlMapper();
Object obj = xmlMapper.readValue(xmlString, Object.class);
// 将Java对象转换为JSON字符串
ObjectMapper jsonMapper = new ObjectMapper();
String jsonString = jsonMapper.writeValueAsString(obj);
System.out.println(jsonString);
```
输出结果为:
```json
{"person":{"name":"John","age":"30"}}
```
2. 手动转换
也可以手动编写代码将XML和JSON字符串互相转换。例如,使用Java内置的XML DOM API将XML字符串转换为JSON字符串:
```java
import org.json.JSONObject;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import java.util.HashMap;
import java.util.Map;
String xmlString = "<person><name>John</name><age>30</age></person>";
// 将XML字符串解析为DOM对象
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document doc = builder.parse(new InputSource(new StringReader(xmlString)));
// 将DOM对象转换为JSON对象
JSONObject json = new JSONObject();
Element root = doc.getDocumentElement();
if (root.hasChildNodes()) {
NodeList nodeList = root.getChildNodes();
for (int i = 0; i < nodeList.getLength(); i++) {
Node node = nodeList.item(i);
if (node.getNodeType() == Node.ELEMENT_NODE) {
Element element = (Element) node;
Map<String, String> map = new HashMap<>();
if (element.hasAttributes()) {
for (int j = 0; j < element.getAttributes().getLength(); j++) {
map.put(element.getAttributes().item(j).getNodeName(),
element.getAttributes().item(j).getNodeValue());
}
}
if (element.hasChildNodes()) {
json.put(element.getNodeName(), element.getTextContent());
} else if (!map.isEmpty()) {
json.put(element.getNodeName(), new JSONObject(map));
}
}
}
}
System.out.println(json.toString());
```
输出结果为:
```json
{"person":{"name":"John","age":"30"}}
```
3. 使用XPath表达式
我们还可以使用XPath表达式从XML中提取数据,并将其转换为JSON格式。例如,使用Java内置的XPath API将XML字符串转换为JSON字符串:
```java
import org.json.JSONObject;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathExpression;
import javax.xml.xpath.XPathFactory;
import java.io.StringReader;
String xmlString = "<person><name>John</name><age>30</age></person>";
// 创建XPath对象
XPathFactory xPathfactory = XPathFactory.newInstance();
XPath xpath = xPathfactory.newXPath();
// 编译XPath表达式
XPathExpression expr = xpath.compile("/*");
// 将XML字符串解析为DOM对象
InputSource source = new InputSource(new StringReader(xmlString));
NodeList nodes = (NodeList) expr.evaluate(source, XPathConstants.NODESET);
// 将DOM对象转换为JSON对象
JSONObject json = new JSONObject();
for (int i = 0; i < nodes.getLength(); i++) {
Node node = nodes.item(i);
if (node.getNodeType() == Node.ELEMENT_NODE) {
Element element = (Element) node;
if (element.hasChildNodes()) {
json.put(element.getNodeName(), element.getTextContent());
}
}
}
System.out.println(json.toString());
```
输出结果为:
```json
{"person":{"name":"John","age":"30"}}
```
注意:以上示例仅供参考,实际使用时需要根据具体情况进行调整。
阅读全文