public static boolean isBlank(String str) {
int strLen;
if (str != null && (strLen = str.length()) != 0) {
for(int i = 0; i < strLen; ++i) {
if (!Character.isWhitespace(str.charAt(i))) {
return false;
}
}
return true;
} else {
return true;
}
}//该类是判断字符串是否全部为空格组成或者字符串为空,是的话返回false,但凡存在字符就返回true
//StringUtils还有许多其他关于字符串处理的函数,还需要继续研究