StringUtils.isEmpty() 过期了,用什么替换?
@Testpublic void test01(){String s1 = null;// null对象String s2 = "";// 空串String s3 = " "; // 带空格System.out.println("s1:"+ StringUtils.hasText(s1));System.out.println("s2:"+ StringUtils.hasText(s2));
·
@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() 代替
更多推荐
已为社区贡献4条内容
所有评论(0)