public class StrUtils { public static boolean isEmpty(String str){ if(str==null||"".equals(str)){ return true; } return false; } }.
確定! 回上一頁