赞
踩
因为特殊原因,有些前端列表需要展示的内容比较复杂,可能是合并了几个集合后最终展示的,所以此时就无法使用pagehelper分页,之前在网上找了一些工具类,自己也稍微改造了下
**
list集合工具类
/
public class ListUtils {
/*
@param pageSize 当前页面大小
@param pageIndex 当前页码
@param list 需要分页的集合
@return
*/
public static List Pager(int pageSize, int pageIndex, List list) {
//使用list 中的sublist方法分页
List dataList = new ArrayList();
// 每页显示多少条记录
int currentPage; //当前第几页数据
int totalRecord = list.size(); // 一共多少条记录
int totalPage = totalRecord % pageSize; // 一共多少页
if (totalPage > 0) {
totalPage = totalRecord / pageSize + 1;
} else {
totalPage = totalRecord / pageSize;
}
System.out.println(“总页数:” + totalPage);
// 当前第几页数据
currentPage = totalPage < pageIndex ? totalPage : pageIndex;
// 起始索引
int fromIndex = pageSize * (currentPage - 1);
// 结束索引
int toIndex = pageSize * currentPage > totalRecord ? totalRecord : pageSize * currentPage;
try {
if (list.size() > 0) {
dataList = list.subList(fromIndex, toIndex);
}
} catch (IndexOutOfBoundsException e) {
e.printStackTrace();
}
return dataList;
}
//执行模糊查询
public static List seach(List list, String title) {
List results = new ArrayList();
Pattern pattern = Pattern.compile(title);
for (int n = 0; n < list.size(); n++) {
Matcher matcher = pattern.matcher(((ProposalInfo) list.get(n)).getTitle());
if (matcher.find()) {
results.add(list.get(n));
}
}
return results;
}
}
可以直接调用实现分页跟模糊查询
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。