Create SoapXmlFormatUtil.java

This commit is contained in:
Carol 2020-06-19 14:59:57 +08:00 committed by GitHub
parent 5b766bf24e
commit f2788bc7c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,138 @@
package site.cnkj.utils;
import com.alibaba.fastjson.JSONObject;
import org.dom4j.Attribute;
import org.dom4j.Document;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
/*
* @author LXW
* @create 2020/5/26 14:38
* @Description
*/
public class SoapXmlFormatUtil {
public static JSONObject parse(String soapXml){
JSONObject object = new JSONObject();
try {
JSONObject firstElement = getFirstElement(soapXml);
JSONObject id0 = firstElement.getJSONObject("id0");
for (String s : id0.keySet()) {
Object s1 = id0.get(s);
if (s1 instanceof List){
List list = new ArrayList();
List<String> stringList = (List<String>) s1;
for (String o : stringList) {
if (o.contains("#")){
list.add(traverseNode(firstElement, o));
}else {
list.add(o);
}
}
object.put(s, list);
}else {
String key = s1.toString();
if (key.contains("#")){
object.put(s, traverseNode(firstElement, key));
}else {
object.put(s, key);
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
return object;
}
private static JSONObject traverseNode(JSONObject rootElement, String key) throws Exception{
JSONObject jsonObject = rootElement.getJSONObject(key.replaceAll("#", ""));
for (String s2 : jsonObject.keySet()) {
Object o1 = jsonObject.get(s2);
if (o1 instanceof List){
List<String> stringList1 = (List<String>) o1;
List list1 = new ArrayList();
for (String s3 : stringList1) {
if (s3.contains("#")){
JSONObject jsonObject1 = rootElement.getJSONObject(s3.replaceAll("#", ""));
list1.add(jsonObject1);
}else {
list1.add(s3);
}
}
jsonObject.put(s2, list1);
}else {
String key3 = o1.toString();
if (key3.contains("#")){
JSONObject jsonObject1 = rootElement.getJSONObject(key3.replaceAll("#", ""));
jsonObject.put(s2, jsonObject1);
}else {
jsonObject.put(s2, key3);
}
}
}
return jsonObject;
}
private static JSONObject getFirstElement(String soapXml) throws Exception{
JSONObject jsonObject = new JSONObject();
Document document = DocumentHelper.parseText(soapXml);
Element rootElement = document.getRootElement();
Iterator iterator = rootElement.elementIterator();
while (iterator.hasNext()){
Element next = (Element) iterator.next();
Iterator elementIterator = next.elementIterator();
while (elementIterator.hasNext()){
Element next1 = (Element) elementIterator.next();
String name = next1.getName();
if ("multiRef".equals(name)){
String id = next1.attribute("id").getValue();
JSONObject multiRefElement = getMultiRefElement(next1);
jsonObject.put(id, multiRefElement);
}
}
}
return jsonObject;
}
private static JSONObject getMultiRefElement(Element element) throws Exception{
JSONObject jsonObject = new JSONObject();
Iterator iterator1 = element.elementIterator();
while (iterator1.hasNext()){
Element next = (Element) iterator1.next();
String text1 = next.getText();
String name1 = next.getName();
Attribute attribute = next.attribute("type");
Attribute attributeHref = next.attribute("href");
if (attribute != null){
String attributeValue = attribute.getValue();
if (attributeValue.toLowerCase().contains("array")){
List list = new ArrayList();
Iterator iterator2 = next.elementIterator();
while (iterator2.hasNext()){
Element next2 = (Element) iterator2.next();
Attribute attribute1 = next2.attribute("href");
if (attribute1 != null){
list.add(attribute1.getValue());
}else {
list.add(next2.getText());
}
}
jsonObject.put(name1, list);
}else if (attributeValue.toLowerCase().contains("string")){
jsonObject.put(name1, text1);
}
}else if (attributeHref != null){
String attributeValueHref = attributeHref.getValue();
jsonObject.put(name1, attributeValueHref);
}
}
return jsonObject;
}
}