/**
* 判断字符串是否为空
* @param str
* @return
*/
public static boolean isNotEmpty(String str) {
if(str != null && !"".equals(str.trim()))
return true;
else
return false;
}
/**
* 判断字符串是否为空
* @param str
* @return
*/
public static boolean isNotEmpty(String str) {
if(str != null && !"".equals(str.trim()))
return true;
else
return false;
}