@Test
public void test01(){
String s1 = null; // null对象
String s2 = ""; // 空串
String s3 = " "; // 带空格
System.out.println("s1:"+ StringUtils.hasText(s1));
System.out.println("s2:"+ StringUtils.hasText(s2));
System.out.println("s3:"+ StringUtils.hasText(s3));
}
/*
控制台输出:
s1:false
s2:false
s3:false
*/
用 StringUtils.hasText() 代替
版权声明:本文为Hcy_code原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。