java空和非空判断
public static boolean isEmpty(String str){ if("".equals(str)||str==null){ return true; }else{ return false; } } public static boolean isNotEmpty(String str){ if(!"".equals(str)&&str!=null){ return true; }else{ return false; } }
public static boolean isEmpty(String str){ if("".equals(str)||str==null){ return true; }else{ return false; } } public static boolean isNotEmpty(String str){ if(!"".equals(str)&&str!=null){ return true; }else{ return false; } }