用JSP提取數(shù)據(jù)庫(kù)內(nèi)容并顯示在頁(yè)面上,如何使它帶超鏈接(這是提取數(shù)據(jù)庫(kù)內(nèi)容的代碼)請(qǐng)各位大蝦幫幫忙啊 急用!!! %@ include file=head.txt %%! //聲明一個(gè)共享的連接對(duì)象:Connection con=null;//顯示數(shù)據(jù)庫(kù)記錄的方法:public void showList(ResultSet rs,javax.servlet.jsp.JspWriter out,int n,pro.HandleMessage h){try{ out.print(Table Border);out.print(TR);out.print(TH width=50+Font size=1+主題+/FONT);out.print(/TR);for(int i=1;i=n;i++){ String title=rs.getString(title); if(title==null){title=;}//為了能顯示原始的HTML或JSP文件格式的信息,需對(duì)信息進(jìn)行回壓流處理:h.setContent(title);title=h.getContent();//將信息顯示在表格中: out.print(TR);out.print(TD +title+/TD); out.print(/TR) ;rs.next(); }out.print(/Table);}catch(Exception e1) {}}%% Statement sql=null; ResultSet rs=null; int rowCount=0; //總的記錄數(shù)。String logname=;//第一個(gè)客戶負(fù)責(zé)建立連接對(duì)象:if(con==null){ try{Class.forName(sun.jdbc.odbc.JdbcOdbcDriver);}catch(ClassNotFoundException e){out.print(e);}try{con=DriverManager.getConnection(jdbc:odbc:friend,,);sql=con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY);rs=sql.executeQuery(SELECT * FROM wordpad); //返回可滾動(dòng)的結(jié)果集。rs.last(); //將游標(biāo)移動(dòng)到最后一行。int number=rs.getRow(); //獲取最后一行的行號(hào)。rowCount=number; //獲取記錄數(shù)。handlePage.setPageSize(3); //設(shè)置每頁(yè)顯示的記錄數(shù)。handlePage.setShowPage(1); //設(shè)置欲顯示的頁(yè)碼數(shù)。handlePage.setPageCount(rowCount,handlePage.getPageSize()); //計(jì)算總頁(yè)數(shù)。out.print(共有+handlePage.getPageCount()+頁(yè),);out.print(每頁(yè)顯示+ handlePage.getPageSize()+條記錄); }catch(SQLException e) {out.print(e);}}