手工分页

List<BidInfo> pageResult = new ArrayList<BidInfo>();

Collections.sort(myinvestlist, new Comparator<BidInfo>() {  

 

           public int compare(BidInfo o1, BidInfo o2) {  

               long result = o1.getInterestStartDate().getTime() - o2.getInterestStartDate().getTime();  

               if (result >= 0) {  

                   return -1;

               }else{

               return 1;

               }  

              // return result;  

           }  

       });

if((intcp)*intps > myinvestlist.size()-1){

pageResult =  myinvestlist.subList((intcp-1)*intps, myinvestlist.size());

}else{

pageResult = myinvestlist.subList((intcp-1)*intps, (intcp)*intps);

}

 

//获取债权信息

PageUtil<BidInfo> pageUtil = new PageUtil<BidInfo>().getListBySqlPage(myinvestlist.size(),  pageResult, (Integer.valueOf(currentPage))*10-9, 10);

你可能感兴趣的:(手工分页)