JSON 是一種輕量級的資料交換格式,JSON 的格式類似於鍵值對。我們可以使用org.json.XML類別將XML轉換為JSON陣列,這提供了一個靜態方法,XML.toJSONObject() 將XML 轉換為JSON 陣列。
public static JSONObject toJSONObject(java.lang.String string) throws JSONException
在下面的範例中,將XML 轉換為JSON 陣列
import org.json.*; public class ConvertXMLToJSONArrayTest { public static String xmlString= <strong>"<!--?xml version="1.0" ?--></strong><?xml version=\"1.0\" ?><root><test attrib=\"jsontext1\">tutorialspoint</test><test attrib=\"jsontext2\">tutorix</test></root>"; public static void main(String[] args) { try { JSONObject json = XML.toJSONObject(xmlString); // converts xml to json String jsonPrettyPrintString = json.toString(4); // json pretty print System.out.println(jsonPrettyPrintString); } catch(JSONException je) { System.out.println(je.toString()); } } }
{"root": {"test": [ { "attrib": "jsontext1", "content": "tutorialspoint" }, { "attrib": "jsontext2", "content": "tutorix" } ]}}
以上是如何在Java中將XML轉換為JSON陣列?的詳細內容。更多資訊請關注PHP中文網其他相關文章!