📜  JsonArray 获取第一个对象 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:48.338000             🧑  作者: Mango

代码示例1
private static int FIRST_ELEMENT = 0;

public static void main(String[] args) {
    JSONArray json = new JSONArray("[{\"Hello1\":\"1\"},{\"Hello2\":\"2\"}]");

    if (json.length() > 0) {
        System.out.println("First: " + json.getJSONObject(FIRST_ELEMENT).toString());// parse the date instead of toString()
    }
}