List<List<String>> batchList = new ArrayList<>();
if(!CollectionUtils.isEmpty(ids)){
int batchSize = 500;
int totalSize = ids.size();
int batchCount = (totalSize + batchSize - 1)/batchSize;
for(int i = 0; i < batchCount; i++){
int fromIndex = i * batchSize;
int toIndex = Math.min(fromIndex + batchSize,totalSize);
List<String> batchDataList = ids.subList(fromIndex, toIndex);
batchList.add(batchDataList);
}
}
java 批量处理数据
最新推荐文章于 2025-02-16 20:21:54 发布