- 浏览: 3200 次
- 性别:
- 来自: 深圳
最近访客 更多访客>>
文章列表
分享一个封装好的分页实例
1 新建接口
import java.util.List;
public interface PageInterface {
/**
* 根据页数,每页显示行数返回jtable显示信息
* @param page
* @param rows
* @return
*/
public List getTableList(int page, int rows);
}
2 根据路径查找类
public class PageFactory {
/**
* 根据路径查找类
* @param className 路径
* @return
...
import java.util.List;
public interface PageInterface {
public List getTableList(int page, int rows);
}
public class PageFactory {
public static PageInterface getClass(String className)
throws InstantiationException, IllegalAccessException {
PageInterface production = null;
try {
produc ...