不能用 str.equalsIgnoreCase(null)。
写了个判定的方法,供以后直接调用:
1 public static boolean isEmpty(String str) { 2 if (str != null && !"".equals(str)) { 3 return false; 4 } 5 return true; 6 }
不能用 str.equalsIgnoreCase(null)。
写了个判定的方法,供以后直接调用:
1 public static boolean isEmpty(String str) { 2 if (str != null && !"".equals(str)) { 3 return false; 4 } 5 return true; 6 }