Org Json 简明教程
org.json - XML
XML 类提供静态方法,用于将 XML 文本转换为一个 JSONObject,反之亦然。
以下方法在示例中介绍。
-
toJSONObject(String) − 将 XML 转换为一个 JSONArray 对象。
-
toString(JSONObject) − 从一个 JSONObject 对象中提供 XML。
Example
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));
}
}