数据分割

public abstract class BatchHandlerList<T> implements BatchHandlerInterface<T> {
    
    private static final Logger LOGGER = Logger.getLogger(BatchHandlerList.class);
    //每次处理条数
    private Integer perNum;
    
    private List<T> aylist;

    public BatchHandlerList(Integer perNum, List<T> aylist) {
        super();
        this.perNum = perNum;
        this.aylist = aylist;
    }
    
    /**
     * 分批调用方法
     * */
    public void handlerList(){
        try{
            if(aylist!=null && aylist.size() > 0){
                int size = aylist.size();
                int startIndex = 0;
                int endIndex = 1;
                int num = 1;
                if (size > perNum) {
                    num = size / perNum;
                }
                for (int i = 1; i <= num; i++) {
                    endIndex = (i) * perNum > size ? size : (i) * perNum;
                    List<T> subList = aylist.subList(startIndex, endIndex);
                    
                    startIndex = perNum * i;
                    if (subList!=null && subList.size() > 0) {
                        handler(subList);
                    }
                    
                    if (num == i && perNum * num < size) {
                        //最后一批处理
                        subList = aylist.subList(perNum * num, size);
                        if (subList.size() > 0) {
                            handler(subList);
                        }
                    }
               }
            }
        }catch(Throwable e){
            LOGGER.error("batchHandlerList handler exception",e);
            //错误回调方法可以重写
            errorHandler();
        }
    }
    
    public void errorHandler(){};

 

 

 

//方法调用

    BatchHandlerList<Object> handlerList = new BatchHandlerList<Object>(200,ListObject) {
                @Override
                public void handler(List<Object> subList) {
                   //方法调用
                }
            };
            handlerList.handlerList();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值