首先是 Apache StringUtils.isBlank() 部分源码
public static boolean isBlank(final CharSequence cs) {
int strLen;
if (cs == null || (strLen = cs.length()) == 0) {
return true;
}
for (int i = 0; i < strLen; i++) {
if (!Character.isWhitespace(cs.charAt(i))) {
return false;
}
}
return true;
}
然后是 Apache StringUtils.isEmpty() 部分源码
public static boolean isEmpty(final CharSequence cs) {
return cs == null || cs.length() == 0;
}
最后是 Spring StringUtils.isEmpty() 的部分源码
public static boolean isEmpty(Object str) {
return (str == null || "".equals(str));
}
通过源码我们可以很清楚的看到两者的区别,Apache 的 StringUtils.isBlank() 的判空对 null 值,空值,无意义的空格都进行了判断,判定这些值为空值;Spring 和 Apache 的 StringUtils.isEmpty() 的判空仅对 null 值,空值进行了判断,判定这些值为空值,对于无意义的空格字符串并没有进行判断。
其实通过二者的方法名也可以大致可以区分区功能上的差别,StringUtils.isBlank() 和 StringUtils.isEmpty();
所以我们以后在使用的时候要注意区分,导包时也要注意区别。