在Excel导入时判断效验

1:excel有数据效验时 空值判断

/**
 * 检查表格数据是否为空  excel处理数据有效性  poi把空值当作shu
 *
 * @param obj
 * @return
 */
private boolean checkObjFieldIsNotNull(Object obj) {
    try {
        for (Field f : obj.getClass().getDeclaredFields()) {
            f.setAccessible(true);
            if (f.get(obj) != null) {
                return true;
            }
        }
    } catch (IllegalAccessException e) {

    }
    return false;
}
/**
 * 调用这个方法,可以将空白行去掉:
 */
Iterator<excelus> it = excelList.iterator();//excelListList<excelLine>类型的Excel数据,excelLine是行的数据类型  
    while(it.hasNext()){
    if (isBlankObject(it.next())) {
        it.remove();
    }
}
/**
 * 用反射的方法可以排除这种数据
 * @param model
 * @return
 * @throws NoSuchMethodException
 * @throws IllegalAccessException
 * @throws IllegalArgumentException
 * @throws InvocationTargetException
 */
public static boolean isBlankObject(Object model) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException{
    Field[] field = model.getClass().getDeclaredFields();        //获取实体类的所有属性,返回Field数组
    for(int j=0 ; j<field.length ; j++){     //遍历所有属性
        String name = field[j].getName();    //获取属性的名字

        //System.out.println("attribute name:"+name);
        name = name.substring(0,1).toUpperCase()+name.substring(1); //将属性的首字符大写,方便构造getset方法
        //String type = field[j].getGenericType().toString();    //获取属性的类型
        Method m = model.getClass().getMethod("get"+name);
        if(!StringUtils.isBlank((String)m.invoke(model))){
            return false;
        }
    }

    return true;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值