首頁 >Java >java教程 >如何在Java中將XML轉換為JSON陣列?

如何在Java中將XML轉換為JSON陣列?

PHPz
PHPz轉載
2023-09-14 23:01:021272瀏覽

如何在Java中將XML轉換為JSON陣列?

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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除