java的String类判断null或空的方法

针对String字符串对象的判空和是否为null有三个方向:

  • 直接比较。例如str == null或者str==""。
  • java的String类自带的isEmpty()方法,如果对象为null,则不能使用该方法,会报空指针异常。
  • StringUtils工具类的isEmpty和isBlank方法,与String类自带的isEmpty()区别见表格和代码。
  • 工具类的isBlank方法是最全能的。
  • 工具类的isEmpty不认为" "为空。
  • String类的isEmpty无法对null进行判断,同时也不认为" "为空。

StringUtils.isEmpty

StringUtils.isBlank

str.isEmpty

""

true

true

true

" "

false

true

false

nul

true

true

报错


        System.out.println("".isEmpty());//true
        System.out.println("  ".isEmpty());//false
        System.out.println(" 1111 ".isEmpty());//false
//        System.out.println(null.isEmpty());//java.lang.NullPointerException

        System.out.println("---------");

        System.out.println(StringUtils.isEmpty(""));//true
        System.out.println(StringUtils.isEmpty("  "));//false
        System.out.println(StringUtils.isEmpty(" 1111 "));//false
        System.out.println(StringUtils.isEmpty(null));//true

        System.out.println("---------");

        System.out.println(StringUtils.isNotEmpty(""));//false
        System.out.println(StringUtils.isNotEmpty("  "));//true
        System.out.println(StringUtils.isNotEmpty(" 1111 "));//true
        System.out.println(StringUtils.isNotEmpty(null));//false

        System.out.println("---------");

        System.out.println(StringUtils.isBlank(""));//true
        System.out.println(StringUtils.isBlank("  "));//true
        System.out.println(StringUtils.isBlank(" 1111 "));//false
        System.out.println(StringUtils.isBlank(null));//true
#基础知识##资料##八股文#
全部评论

相关推荐

10-14 23:01
已编辑
中国地质大学(武汉) Java
CUG芝士圈:虽然是网上的项目,但最好还是包装一下,然后现在大部分公司都在忙校招,十月底、十一月初会好找一些。最后,boss才沟通100家,别焦虑,我去年暑假找第一段实习的时候沟通了500➕才有面试,校友加油
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务