java 返回对象的非空属性的列表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 返回对象的非空属性的列表相关的知识,希望对你有一定的参考价值。
import org.apache.commons.beanutils.PropertyUtils;
public List<String> getNotEmptyObjectProperties(Object object) {
List<String> notEmptyProperties = new ArrayList<String>();
if (object == null) {
return notEmptyProperties;
}
try {
for (Entry<String, Object> entry : PropertyUtils.describe(object).entrySet()) {
Object obj = entry.getValue();
if (obj == null || obj instanceof Class) {
continue;
}
if (obj instanceof String) {
if (!((String) obj).trim().isEmpty()) {
notEmptyProperties.add(entry.getKey());
}
}
else if (obj instanceof Collection) {
if (!((Collection<?>) obj).isEmpty()) {
notEmptyProperties.add(entry.getKey());
}
}
else {
notEmptyProperties.addAll(getNotEmptyObjectProperties(obj));
}
}
}
catch (Exception e) {
LOGGER.error("", e);
return notEmptyProperties;
}
return notEmptyProperties;
}
以上是关于java 返回对象的非空属性的列表的主要内容,如果未能解决你的问题,请参考以下文章
Mysql 返回JSON值属性的函数
当字典中没有匹配的非空值时,返回null。
给定一个只包含正整数的非空数组,返回该数组中重复次数最多的前N个数字 ,返回的结果按重复次数从多到少降序排列(N不存在取值非法的情况)
返回 MIN 和 MAX 值并忽略空值 - 使用前面的非空值填充空值
在 Java 8 中懒惰地返回第一个非空列表
SpringBoot参数非空校验的非最优实现历程