@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() 代替
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐