切分 拆分集合list的方式
Posted beixiaoyi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了切分 拆分集合list的方式相关的知识,希望对你有一定的参考价值。
一般有两种,第一是sublist(),代码冗余效率低;
第二种:
引包自
com.google.common.collect.Lists
话不多说直接上实例:
List<ContractModel> contractList = ****;
List<List<ContractModel>> partition = Lists.partition(contractList, Constants.BATCH_SIZE);
for (List<ContractModel> item : partition){
contractModelDao.updateContractBatch(item);
}
注:
updateContractBatch 是个批量方法;
Constants.BATCH_SIZE 50条;
以上是关于切分 拆分集合list的方式的主要内容,如果未能解决你的问题,请参考以下文章