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")); }
public void test_parse() throws Exception { String text = "{\"\\u0006\":\"123\"}"; JSONUtils.parse(text); }