org.apache.commons.lang.StringUtils
public static boolean isEmpty(String str)
判斷某字符串是否為empty牺六,標(biāo)準(zhǔn)是 null == str 或 str.length() == 0
public static boolean isBlank(String str)
判斷某字符串是否為blank,標(biāo)準(zhǔn)是 null == str 或 str.length() == 0 或 由一系列的空格組成犁享,比如" "
這里有詳細(xì)的說明:
http://blog.sina.com.cn/s/blog_4550f3ca0100qrsd.html