web之jsp开发之(一)

 jsp的使用方式

2-1 jsp的组成 html+java代码+jsp自身的东西

2-2 jsp与java代码的结合方式
    
    第一种方式 <%!    %> :定义的变量是成员的变量

    第二种方式 <%= %> : 向页面输出内容(可以写固定值,可以写变量)
    <%="hello jsp" %>,生成到servlet里面的service方法里面,生成代码 out.print("hello jsp" );

    第三种方式 <%  %>,生成到servlet的service里面
    
    例如:结合jsp生成一个五行五列的表格

效果图: 2-1 建立相关web工程 ,然后在默认目录下建立一个用于编写生成表格的jsp文件

web之jsp开发之(一)_第1张图片


编写生成表格的jsp文件的内容


[java]  view plain  copy
 print ?
  1. <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>  
  2. <%  
  3.     String path = request.getContextPath();  
  4.     String basePath = request.getScheme() + "://"  
  5.             + request.getServerName() + ":" + request.getServerPort()  
  6.             + path + "/";  
  7. %>  
  8.   
  9. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
  10. <html>  
  11. <head>  
  12. <base href="<%=basePath%>">  
  13.   
  14. <title>My JSP 'MyJsp.jsp' starting page</title>  
  15.   
  16. <meta http-equiv="pragma" content="no-cache">  
  17. <meta http-equiv="cache-control" content="no-cache">  
  18. <meta http-equiv="expires" content="0">  
  19. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">  
  20. <meta http-equiv="description" content="This is my page">  
  21.   
  22. </head>  
  23.   
  24. <body>  
  25.     这里是使用jsp生成的一个表格  
  26.     <br />  
  27.     <table border="1" cellpadding="10">  
  28.         <%  
  29.             for (int i = 0; i < 6; i++) {  
  30.         %>  
  31.         <tr>  
  32.             <%  
  33.                 for (int j = 0; j < 6; j++) {  
  34.             %>  
  35.             <!-- java与html结合  向页面输入java中的变量值 -->  
  36.             <td>第 <%=i%>行第<%=j%> 个小表格</td>  
  37.             <%  
  38.                 }  
  39.             %>  
  40.         </tr>  
  41.         <%  
  42.             }  
  43.         %>  
  44.     </table>  
  45. </body>  
  46. </html>  

你可能感兴趣的:(web之jsp开发之(一))