whyclxw
2024-04-23 ae9e46ca80914e42df6c4081641f4fedee0ec0e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.whyc.util;
 
public class ServletUtils {
    public static boolean isNotNull(Object obj){
        boolean flag=false;
        if(obj!=null){
            if(obj.toString().trim().length()>0){
                flag=true;
            }
        }
        return flag;
    }
    
}