soap協議的xml數據轉json

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.json.XML;

public class XMLUtil2 {

    /**
     * xml轉換json
     * @param xml
     * @return
     * @throws JSONException
     */
    public static JSONObject XML2Json(String xml) throws JSONException{
        JSONObject xmlJSONObj = null;
        try {
            xmlJSONObj = XML.toJSONObject(xml);
        } catch (JSONException e) {
            e.printStackTrace();
        }
        return xmlJSONObj;
    }

    /**
     * 解析XML
     * @return
     */
    public static JSONArray SAXXml() {
        String xmlString = "";
        JSONArray ja = new JSONArray();
        try {
            JSONObject xml2Json = XML2Json(xmlString);
            JSONArray jsonObject = xml2Json.getJSONObject("result").getJSONObject("data").getJSONArray("row");
            for (int i = 0; i < jsonObject.length(); i++) {
                JSONObject jo = new JSONObject();
                JSONObject jsonObject2 = jsonObject.getJSONObject(i);
                JSONArray jsonArray = jsonObject2.getJSONArray("field");
                for (int j = 0; j < jsonArray.length(); j++) {
                    JSONObject jsonObject3 = jsonArray.getJSONObject(j);
                    String key = jsonObject3.getString("name");
                    String val  ="";
                    if(jsonObject3.has("content")){
                        val = jsonObject3.getString("content");
                    }
                    jo.put(key, val);
                    ja.put(jo);
                }
            }
        } catch (JSONException e) {
            e.printStackTrace();
        }
        return ja;
    }
}
------------------對應的jar包版本pom.xml配置
<dependency>
            <groupId>org.jdom</groupId>
            <artifactId>jdom</artifactId>
            <version>2.0.2</version>
        </dependency>
        <dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
            <version>20171018</version>
        </dependency>

 

發佈了19 篇原創文章 · 獲贊 0 · 訪問量 3482
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章