ap 프로토콜의 xml 데이터 변환 json

2147 단어
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  

            org.jdom
            jdom
            2.0.2
        
        
            org.json
            json
            20171018
        

좋은 웹페이지 즐겨찾기