码迷,mamicode.com
首页 > 其他好文 > 详细

StringUtils工具类中的isBlank()方法和isEmpty()方法的区别

时间:2019-12-31 23:26:19      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:lse   boolean   最大   system   main   bsp   ase   character   方法   

1.isBlank()方法

 1 public static boolean isBlank(String str) { 
 2         int strLen;
 3         if (str == null || (strLen = str.length()) == 0) {            //判断str是否为null或者str长度是否等于0
 4             return true;
 5         }
 6         for (int i = 0; i < strLen; i++) {
 7             if ((Character.isWhitespace(str.charAt(i)) == false)) {  //空白字符的判断
 8                 return false;
 9             }
10         }
11         return true;
12     }

2.isEmpty()方法

1 public static boolean isEmpty(String str) {
2         return str == null || str.length() == 0;         //判断str的是否是null或者str长度是否等于0
3     }

可以看出isBlank()方法和isEmpty()最大的区别就是对字符串中是否有空白字符的判断

public static void main(String[] args) {
        System.out.println(StringUtils.isBlank("  "));    //true
System.out.println(StringUtils.isEmpty(" "));    //flase
    }

StringUtils工具类中的isBlank()方法和isEmpty()方法的区别

标签:lse   boolean   最大   system   main   bsp   ase   character   方法   

原文地址:https://www.cnblogs.com/coder-wf/p/12127757.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!