您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關如何使用java實現對ArrayList分頁,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
java 對ArrayList進行分頁
概述
系統與系統之間的交互,通常是使用接口的形式。假設B系統提供了一個批量的查詢接口,限制每次只能查詢50條數據,而我們實際需要查詢500條數據,這個時候可以對這500條數據做分批操作,分10次調用B系統的批量接口。
如果B系統的查詢接口是使用List作為入參,那么要實現分批調用的話,可以利用ArrayList的subList方法來處理。
代碼
sublist方法的定義:
List<E> subList(int fromIndex, int toIndex);
只需要準確的算出fromIndex和 toIndex即可。
數據準備
public class TestArrayList { public static void main(String[] args) { List<Long> datas = Arrays.asList(new Long [] {1L,2L,3L,4L,5L,6L,7L}); } }
分頁算法
import java.util.Arrays; import java.util.List; public class TestArrayList { private static final Integer PAGE_SIZE = 3; public static void main(String[] args) { List<Long> datas = Arrays.asList(new Long [] {1L,2L,3L,4L,5L,6L,7L,8L}); //總記錄數 Integer totalCount = datas.size(); //分多少次處理 Integer requestCount = totalCount / PAGE_SIZE; for (int i = 0; i <= requestCount; i++) { Integer fromIndex = i * PAGE_SIZE; //如果總數少于PAGE_SIZE,為了防止數組越界,toIndex直接使用totalCount即可 int toIndex = Math.min(totalCount, (i + 1) * PAGE_SIZE); List<Long> subList = datas.subList(fromIndex, toIndex); System.out.println(subList); //總數不到一頁或者剛好等于一頁的時候,只需要處理一次就可以退出for循環了 if (toIndex == totalCount) { break; } } } }
關于如何使用java實現對ArrayList分頁就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。