在Java ME 中將JSON 字串解析為物件
在Java ME 中,將JSON 字串轉換為內部物件表示形式字串可能具有挑戰性。不過,有一個簡化該過程的便捷解決方案:
JSON-simple 庫
JSON-simple 庫由於其較小的尺寸而成為J2ME 的絕佳選擇。它允許快速有效地將 JSON 字串解析為 Java 物件。以下是一個範例:
import org.json.simple.JSONObject; import org.json.simple.parser.JSONParser; // Parse the JSON string into a JSONObject JSONObject json = (JSONObject)new JSONParser().parse("{\"name\":\"MyNode\", \"width\":200, \"height\":100}"); // Access the individual properties System.out.println("name=" + json.get("name")); System.out.println("width=" + json.get("width"));
如您所見,這種方法顯著簡化了流程,將其減少為一行程式碼。
以上是如何在 Java ME 中輕鬆將 JSON 字串解析為物件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!