字符串判断为空

package com.bill.intemag.controller;

import org.apache.commons.lang3.StringUtils;

public class Tests {
public static void main(String[] args) {
//测试一
String aa = "xx";
//点点空 空白字符串 null都可以判断,如果只判断点点空和null使用StringUtils.isAnyEmpty()
String bb = " ";
if(StringUtils.isAnyBlank(aa,bb)){
System.out.println("存在为空");
}else{
System.out.println("都不为空");
}

//测试二(慎用)
//会报错NullPointerException,所以只能判断 点点空;
String cc = null;

if(cc.isEmpty()){
System.out.println("空");
}else{
System.out.println("不空");
}

}
}
posted @ 2023-07-12 10:33  花田007  阅读(29)  评论(0编辑  收藏  举报