add JSONWriter

This commit is contained in:
Looly
2021-06-26 16:56:47 +08:00
parent 8b0357da18
commit 57b6c7dff2
7 changed files with 356 additions and 108 deletions

View File

@@ -64,6 +64,7 @@ public class JSONUtilTest {
map.put("rows", list);
String str = JSONUtil.toJsonPrettyStr(map);
JSONUtil.parse(str);
Assert.assertNotNull(str);
}