1、简单判断是否为JSON格式 ,判断规则:判断首尾字母是否为{}或[],如果都不是则不是一个jsON格式的文本。代码实现如下:public static boolean getJSONType(String str) { boolean
1、简单判断是否为JSON格式 ,判断规则:判断首尾字母是否为{}或[],如果都不是则不是一个jsON格式的文本。
代码实现如下:
public static boolean getJSONType(String str) {
boolean result = false;
if (StringUtils.isNotBlank(str)) {
str = str.trim();
if (str.startsWith("{") && str.endsWith("}")) {
result = true;
} else if (str.startsWith("[") && str.endsWith("]")) {
result = true;
}
}
return result;
}
通过fastjson解析来判断,解析成功,是json格式;否则,不是json格式
代码实现如下:
public static boolean isJSON2(String str) {
boolean result = false;
try {
Object obj=JSON.parse(str);
result = true;
} catch (Exception e) {
result=false;
}
return result;
}
--结束END--
本文标题: java中如何判断字符串是否为json格式
本文链接: https://lsjlt.com/news/4674.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-01
2024-04-03
2024-04-03
2024-01-21
2024-01-21
2024-01-21
2024-01-21
2023-12-23
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0