public class Null { public static boolean isNullOrEmpty(String str) { if(str != null && !str.isEmpty()) return false; return true; } }
確定! 回上一頁