📜  org.json-XML

📅  最后修改于: 2020-11-12 05:09:53             🧑  作者: Mango


XML类提供了将XML文本转换为JSONObject的静态方法,反之亦然。

示例中涵盖了以下方法。

  • toJSONObject(String) -将XML转换为JSONArray对象。

  • toString(JSONObject) -从JSONObject对象提供XML。

import org.json.JSONObject;
import org.json.XML;

public class JSONDemo {
   public static void main(String[] args) { 
      JSONObject jsonObject = new JSONObject();
      jsonObject.put("Name", "Robert");
      jsonObject.put("ID", 1);
      jsonObject.put("Fees", new Double(1000.21));
      jsonObject.put("Active", new Boolean(true));
      jsonObject.put("Details", JSONObject.NULL);

      //Convert a JSONObject to XML
      String xmlText = XML.toString(jsonObject);
      System.out.println(xmlText);

      //Convert an XML to JSONObject
      System.out.println(XML.toJSONObject(xmlText));
   }
}

输出

true
null
11000.21Robert {"Active":true,"Details":null,"ID":1,"Fees":1000.21,"Name":"Robert"}