All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Core.Collections.CollectionHelper Maven / Gradle / Ivy

The newest version!
package Core.Collections;

import java.util.ArrayList;
import java.util.List;

/**
 * Created by admin on 2017/8/2.
 */
public class CollectionHelper {

    public static  List> SplitList(List targe, int size) {
        List> listArr = new ArrayList<>();
        //获取被拆分的数组个数  
        int arrSize = targe.size() % size == 0 ? targe.size() / size : targe.size() / size + 1;
        for (int i = 0; i < arrSize; i++) {
            List sub = new ArrayList<>();
            //把指定索引数据放入到list中  
            for (int j = i * size; j <= size * (i + 1) - 1; j++) {
                if (j <= targe.size() - 1) {
                    sub.add(targe.get(j));
                }
            }
            listArr.add(sub);
        }
        return listArr;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy