Java spring框架 工具类ObjectUtils.isEmpty()方法
在springboot项目中我们可以使用org.springframework.util.ObjectUtils**解决判断对象是否为空的问题**
ObjectUtils.isEmpty
底层实质就是和null进行比较
其源码:文章来源:https://www.toymoban.com/news/detail-619731.html
public static boolean isArray(@Nullable Object obj) {
return obj != null && obj.getClass().isArray();
}
public static boolean isEmpty(@Nullable Object[] array) {
return array == null || array.length == 0;
}
public static boolean isEmpty(@Nullable Object obj) {
if (obj == null) {
return true;
} else if (obj instanceof Optional) {
return !((Optional)obj).isPresent();
} else if (obj instanceof CharSequence) {
return ((CharSequence)obj).length() == 0;
} else if (obj.getClass().isArray()) {
return Array.getLength(obj) == 0;
} else if (obj instanceof Collection) {
return ((Collection)obj).isEmpty();
} else {
return obj instanceof Map ? ((Map)obj).isEmpty() : false;
}
}
我们在写spingboot项目时就可以使用该方法来判断对象、字符串是否为空。文章来源地址https://www.toymoban.com/news/detail-619731.html
//判断是否有值
if(!ObjectUtils.isEmpty(status)){
wrapper.eq("status",status);
}
if (!ObjectUtils.isEmpty(title)){
wrapper.eq("title",title);
}
Integer id = courseSection.getId();
if(ObjectUtils.isEmpty(id)){//判断id的值是否为空,如果为空,则为true
// 新增
try {
courseContentService.addCourseSection(courseSection);
return AjaxResult.success();
} catch (Exception e) {
e.printStackTrace();
return AjaxResult.fail(e.getMessage());
}
}else {
// 修改
try {
courseContentService.updateCourseSection(courseSection);
return AjaxResult.success();
} catch (Exception e) {
e.printStackTrace();
return AjaxResult.fail(e.getMessage());
}
}
到了这里,关于Java spring框架 工具类ObjectUtils.isEmpty()方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!