ฉันเขียนโปรแกรมอรรถประโยชน์เพื่อแบ่งรายการเป็นชุดขนาดที่กำหนด ฉันแค่อยากจะรู้ว่ามี apache ทั่วไปที่ใช้สำหรับการนี้
public static <T> List<List<T>> getBatches(List<T> collection,int batchSize){
int i = 0;
List<List<T>> batches = new ArrayList<List<T>>();
while(i<collection.size()){
int nextInc = Math.min(collection.size()-i,batchSize);
List<T> batch = collection.subList(i,i+nextInc);
batches.add(batch);
i = i + nextInc;
}
return batches;
}
โปรดแจ้งให้เราทราบหากมียูทิลิตี้ที่มีอยู่แล้วสำหรับสิ่งเดียวกัน