判空工具类——Java
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判空工具类——Java相关的知识,希望对你有一定的参考价值。
代码
import java.util.Collection;
/**
* 判空工具类
*/
public class EmptyUtil {
/**
* 判断字符串是否为空,长度为0被认为是空字符串.
*
* @param str
* @return
*/
public static boolean isEmpty(String str) {
if (str != null) {
return str.trim().length() == 0;
} else {
return true;
}
}
/**
* 判断字符串是否为空,字符串前后空白被截断,截断后长度为0被认为是空字符串.
*
* @param str
* @param isTrimed
* 是否去掉前后空格
* @return
*/
public static boolean isEmpty(String str, boolean isTrimed) {
if (isTrimed) {
return str == null || str.trim().length() == 0;
} else {
return str == null || str.length() == 0;
}
}
/**
* 判断列表是否为空,列表没有元素也被认为是空
*
*
* @param list
* @return
*/
public static boolean isEmpty(Collection<?> collection) {
return collection == null || collection.size() == 0;
}
/**
* 判断数组是否为空
*
* @param array
* @return
*/
public static boolean isEmpty(Object[] array) {
return array == null || array.length == 0;
}
/**
* 判断对象是否为空
*
* @param array
* @return
*/
public static boolean isEmpty(Object obj) {
return obj == null || "".equals(obj);
}
}
以上是关于判空工具类——Java的主要内容,如果未能解决你的问题,请参考以下文章
solr分布式索引实战分片配置读取:工具类configUtil.java,读取配置代码片段,配置实例
CollectionUtil - List判空及常用操作工具类