2013-04-02 59 views

回答

1

這是JSON格式的數據。有許多不同的JSON解析器可以用來輕鬆解釋這種格式的數據。這裏有幾個選擇:

你應該能夠找到任何這些庫的好方法。例如起見,如果你從上面使用Jsonification,你只需使用類似:

JsonArray os=Json.parse("[{\"month\":\"1_month\",\"title\":\"one\",\"tasks\":[{\"task_title\":\"1\"}]}]").asArray(); 
JsonObject o=os.get(0).asObject(); 
System.out.println(o.get("month").asString().stringVal()); 

...這將提取的第一個元素"1_month"值。

+1

感謝您的支持。 –

+0

希望你找到了你的問題! – sigpwned

相關問題