查询项目管理机构管理的最高行政区划级别下的全部行政区划的树状列表逻辑完善
This commit is contained in:
@ -5,6 +5,18 @@ import cn.hutool.json.JSONUtil;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
public class JsonStrUtil {
|
||||
|
||||
/**
|
||||
* 判断一个字符串是不是json数组
|
||||
*/
|
||||
public static boolean isJsonArray(String jsonStr) {
|
||||
try {
|
||||
JSONUtil.parseArray(jsonStr);
|
||||
} catch (JSONException e) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
/**
|
||||
*判断一个json数组为空
|
||||
*/
|
||||
|
Reference in New Issue
Block a user