回 帖 发 新 帖 刷新版面

主题:JSP分页技术


编译错误:37行说非法字母


package pageableresult;

import java.sql.*;

 interface Pageable1 extends ResultSet{
/**返回总页数
*/
int getPageCount();
/**返回当前页的记录条数
*/
int getPageRowsCount();
/**返回分页大小
*/
int getPageSize();
/**转到指定页
*/
void gotoPage(int page) ;
/**设置分页大小
*/
void setPageSize(int pageSize);
/**返回总记录行数
*/
int getRowsCount();
/**
 * 转到当前页的第一条记录
 * @exception java.sql.SQLException 异常说明。
 */
void pageFirst() throws SQLException;
/**
 * 转到当前页的最后一条记录
 * @exception java.sql.SQLException 异常说明。
 */
void pageLast() throws SQLException;
/**返回当前页号
*/
int getCurPage();
}  
[size=5] //说在这行错误,也就是说接口错误,,谁帮看看,接口那错,[/size] 
public class PageAbleResultSet implements Pageable1 {
    protected ResultSet rs=null;
    protected int rowsCount;
    protected int pageSize;
    protected int curPage;
    protected String command = "";    
 
 public PageAbleResultSet(ResultSet rs) throws SQLException {
      
    if(rs==null) throw new SQLException("given ResultSet is NULL","user");
      
    rs.last();
    rowsCount=rs.getRow();
    rs.beforeFirst();
    
    this.rs=rs;
}  

public boolean next() throws SQLException {
    return rs.next();
}
 
public String getString(String columnName) throws SQLException {
    try {
        return rs.getString(columnName);
    }
    catch (SQLException e) {//这里是为了增加一些出错信息的内容便于调试
        throw new SQLException (e.toString()+" columnName="
            +columnName+" SQL="+this.getCommand());
    }
}
 
public int getCurPage() {
    return curPage;
}
public int getPageCount() {
    if(rowsCount==0) return 0;
    if(pageSize==0) return 1;
    //calculate PageCount
    double tmpD=(double)rowsCount/pageSize;
    int tmpI=(int)tmpD;
    if(tmpD>tmpI) tmpI++;
    return tmpI;
}
public int getPageRowsCount() {
    if(pageSize==0) return rowsCount;
    if(getRowsCount()==0) return 0;
    if(curPage!=getPageCount()) return pageSize;
    return rowsCount-(getPageCount()-1)*pageSize;
}
public int getPageSize() {
    return pageSize;
}
public int getRowsCount() {
    return rowsCount;
}
public void gotoPage(int page) {
    if (rs == null)
        return;
    if (page < 1)
        page = 1;
    if (page > getPageCount())
        page = getPageCount();
    int row = (page - 1) * pageSize + 1;
    try {
        rs.absolute(row);
        curPage = page;
    }
    catch (java.sql.SQLException e) {
    }
}
public void pageFirst() throws SQLException {
    int row=(curPage-1)*pageSize+1;
    rs.absolute(row);
}
public void pageLast() throws SQLException {
    int row=(curPage-1)*pageSize+getPageRowsCount();
    rs.absolute(row);
}
public void setPageSize(int pageSize) {
    if(pageSize>=0){
        this.pageSize=pageSize;
        curPage=1;
    }














[img]http://[/img]

回复列表 (共1个回复)

沙发

好像要实现interface中所有的函数巴。

我来回复

您尚未登录,请登录后再回复。点此登录或注册