1.判断文本框是否为空的方法。
public static boolean isEmpty(String str) {
if (str == null || str.trim().length() == 0) {
return true;
} else {
return false;
}
}
1.判断文本框是否为空的方法。
public static boolean isEmpty(String str) {
if (str == null || str.trim().length() == 0) {
return true;
} else {
return false;
}
}