【Java】+获取JSON串key名称及key对应值的类型
2021-01-22 03:16
标签:get gets pac form data string ace module EDA 代码: 输出: 【Java】+获取JSON串key名称及key对应值的类型 标签:get gets pac form data string ace module EDA 原文地址:https://www.cnblogs.com/danhuai/p/12891589.html public static void main(String[] args) {
String str = "{\"bussDatas\":[{\"fieldDesc\":\"string\",\"isSelected\":0,\"optionType\":0,\"optionValue\":\"string\",\"orderNum\":0,\"placeHolder\":\"string\"}],\"moduleName\":\"string\",\"packageId\":\"string\",\"techDatas\":{\"fieldDesc\":\"string\",\"isSelected\":0,\"optionType\":0,\"optionValue\":\"string\",\"orderNum\":0,\"placeHolder\":\"string\"}}\n";
JSONObject jsonObject = JSONObject.parseObject(str);
// 格式化输出JSON
String pretty = JSON.toJSONString(jsonObject, SerializerFeature.PrettyFormat, SerializerFeature.WriteMapNullValue, SerializerFeature.WriteDateUseDateFormat);
System.out.println(String.format("原始JSON:\r\n%s", pretty));
// 获取JSON第一层所有的key
Set
上一篇:spring常用注解及常用依赖
下一篇:算法--快排
文章标题:【Java】+获取JSON串key名称及key对应值的类型
文章链接:http://soscw.com/index.php/essay/45270.html