浏览代码

字符串是否为空完善

tags/正式3.10.0
雍文秀 1年前
父节点
当前提交
a1001bdfc0
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      scommons/src/main/java/com/xhkjedu/utils/N_Utils.java

+ 1
- 1
scommons/src/main/java/com/xhkjedu/utils/N_Utils.java 查看文件

@@ -41,7 +41,7 @@ public class N_Utils {
41 41
      * @author WN
42 42
      */
43 43
     public static boolean isNotEmpty(Object obj) {
44
-        if (null == obj || "".equals(obj.toString().trim())) {
44
+        if (null == obj || "".equals(obj.toString().trim()) || "null".equals(obj.toString().trim())) {
45 45
             return false;
46 46
         } else {
47 47
             return true;

正在加载...
取消
保存