多个字符串判断是否为空的工具类

public static boolean isNotEmpty(String ... str){
     if(str == null){
         return false;
     }
     for(int i= 0; i < str.length; i ++){
         if(str[i] == null || "".equals((str[i]).trim())){
             return false;
         }
     }
     return true;
 }

开始测试:

System.out.println(isNotEmpty("test11"," "));;  // false

System.out.println(isNotEmpty("test11",""));;  // false

System.out.println(isNotEmpty("test11","test22"));;  // true

 

你可能感兴趣的:(多个字符串判断是否为空的工具类)