예제 #1
0
 public void test_parse() throws Exception {
   String text = Utils.readFromResource("bvt/sonar-sql.json");
   Map<String, Object> result = (Map<String, Object>) JSONUtils.parse(text);
   LinkedHashMap wallStats = (LinkedHashMap) result.get("Content");
   System.out.println(wallStats.get("blackList"));
 }
예제 #2
0
 public void test_parse() throws Exception {
   String text = "{\"\\u0006\":\"123\"}";
   JSONUtils.parse(text);
 }