首页 > 代码库 > 验证是否是json语句-用于json断言
验证是否是json语句-用于json断言
public class TestFast {
public static void main(String[]args){
String resp="";
int length=resp.length();
int flag=-1;
if(length>2){
int i=0;
// 从第1位的字符开始找,是不是{,如果不是,查看下一个,找到第n个,还不是,就报错
while(i<3){
if(resp.charAt(i)==123){
flag=0;
break;
}
else{
i++;
}
}
if(flag==0){
System.out.println("this is a json");
}else{
System.out.println("this is not a json");
}
//不是,就判断失败,给出结论
}else {
System.out.println("the response is not a json,the length is 0 or 1,or 2(not {})");
}
}
}
验证是否是json语句-用于json断言
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。