公告板
版本库
filestore
活动
搜索
登录
main
/
powerIntelligenceSystem
山西直流电源系统
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
Merge branch 'master' of http://118.89.139.230:10101/r/powerIntelligenceSystem
whyclxw
8 天以前
a7e0682010b832c504f9ff7129dae36316f2f946
[powerIntelligenceSystem.git]
/
src
/
main
/
java
/
com
/
whyc
/
util
/
ServletUtils.java
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;
}
}