• 大小: 43.37MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-07
  • 语言: Java
  • 标签: jsp  

资源简介

JSP是一种动态网页技术标准,利用该技术可以建立安全、跨平台的先进动态网站。耿祥义、张跃平编著的《JSP实用教程(第3版)》是一本实用教程,配备了大量的例题,叙述详细,通俗易懂,便于自学,不仅注重结合实例讲解一些难点和关键技术,而且特别注重训练培养在Web设计中使用MVC模式。全书共分 11章,内容包括JSP简介、JSP语法、JSP内置对象、 JSP与Javabean、Java Servlet、MVC模式、在JSP中使用数据库、文件操作、使用XML以及化妆品销售网、**信息发布网等内容。本书所有知识都结合具体实例进行介绍,力求详略得当,突出JSP在开发Web动态网站方面的强大功能,使读者快速掌握和运用JSP 的编程技巧。 本书不仅可以作为大学计算机及相关专业的教材,也适合自学者及网站开发人员参考使用。

资源截图

代码片段和文件信息

package mybean.data;
import com.sun.rowset.*; 
public class DataByPage{
    CachedRowSetImpl rowSet=null;         //存储表中全部记录的行集对象
    int pageSize=1;                      //每页显示的记录数
    int totalPages=1;                     //分页后的总页数
    int currentPage =1   ;                 //当前显示页 
    public void setRowSet(CachedRowSetImpl set){
       rowSet=set;
    }
    public CachedRowSetImpl getRowSet(){
       return rowSet;
    }
    public void setPageSize(int size){
       pageSize=size;
    }
    public int getPageSize(){
       return pageSize;
    } 
    public int getTotalPages(){
       return totalPages;
    } 
    public void setTotalPages(int n){
       totalPages=n; 
    }
    public void setCurrentPage(int n){
       currentPage =n;
    }
    public int getCurrentPage(){
       return currentPage ;
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        257  2014-12-13 19:34  ch1\example1_1.jsp

     文件        308  2014-12-16 11:33  ch1\shiyan.jsp

     文件     286722  2013-08-01 15:14  ch2\back.jpg

     文件        876  2014-04-03 08:34  ch2\example2_1.jsp

     文件        222  2014-04-03 18:13  ch2\example2_10_a.jsp

     文件        231  2014-04-03 18:24  ch2\example2_10_b.jsp

     文件        393  2014-04-03 18:51  ch2\example2_11.jsp

     文件        466  2014-04-03 19:20  ch2\example2_12.jsp

     文件        239  2014-04-03 19:23  ch2\example2_12_a.jsp

     文件        241  2014-04-03 19:24  ch2\example2_12_b.jsp

     文件        197  2014-04-03 08:45  ch2\example2_2.jsp

     文件        575  2014-04-03 09:13  ch2\example2_3.jsp

     文件        338  2014-04-03 09:27  ch2\example2_4.jsp

     文件        502  2014-04-03 11:01  ch2\example2_5.jsp

     文件        484  2014-04-03 11:32  ch2\example2_6.jsp

     文件        471  2014-04-03 11:47  ch2\example2_7.jsp

     文件       1001  2014-04-03 12:12  ch2\example2_8.jsp

     文件        345  2014-04-03 13:22  ch2\example2_9.jsp

     文件      60992  2014-04-03 18:06  ch2\image\beida.jpg

     文件     362539  2014-03-07 17:29  ch2\image\hehua.jpg

     文件     126876  2013-08-01 22:07  ch2\image\meigui.jpg

     文件     128297  2014-04-03 13:11  ch2\image\tsinghua.jpg

     文件     160706  2014-04-03 10:16  ch2\image\xiao.jpg

     文件     139979  2014-04-03 10:19  ch2\image\zhong.jpg

     文件        146  2014-04-03 18:13  ch2\myfile\ok.txt

     文件        870  2014-04-03 18:51  ch2\myfile\trangle.jsp

     文件    5124096  2014-02-11 08:51  ch2\sound\beida.mp3

     文件    2284180  2014-02-07 20:42  ch2\sound\tsinghua.mp3

     文件   11298778  2013-09-13 14:39  ch3\avi\夕阳山顶.avi

     文件   10317158  2013-10-01 18:10  ch3\avi\我的祖国.avi

............此处省略370个文件信息

评论

共有 条评论