StringUtils.isBlank()方法可以一次性检测String类型的变量是否为空的情况
a. null (是否为null)
b. ""(是否为空)
c. " "(是否是空字符串,引号中存在空格的情况)
a/b/c情况下StingUtils.isBlank()都为true。
官方原码:
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)) == false) {
return false;
}
}
return true;
}
网友评论