JSP的隐式对象的实例

  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>  
  2. <%  
  3. String path = request.getContextPath();  
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";  
  5. %>  
  6.   
  7. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
  8. <html>  
  9.   <head>  
  10.     <base href="<%=basePath%>">  
  11.       
  12.     <title>My JSP 'demo1.jsp' starting page</title>  
  13.       
  14.     <meta http-equiv="pragma" content="no-cache">  
  15.     <meta http-equiv="cache-control" content="no-cache">  
  16.     <meta http-equiv="expires" content="0">      
  17.     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">  
  18.     <meta http-equiv="description" content="This is my page">  
  19.     <!--  
  20.     <link rel="stylesheet" type="text/css" href="styles.css">  
  21.     -->  
  22.   
  23.   </head>  
  24.     
  25.   <body>  
  26.     <%   
  27.         Date date=new Date();  
  28.         out.write(date.toLocaleString()+"<br/>");  
  29.     %>  
  30.       
  31.     <%  
  32.         //域之间的信息获取  
  33.         request.setAttribute("data""abc");//request的域  
  34.         String data=(String)pageContext.getAttribute("data", PageContext.REQUEST_SCOPE);//用pageContext域获取Request域的内容  
  35.         out.write(data+"<br/>");  
  36.         String data2=(String)pageContext.findAttribute("data");//直接寻找data  
  37.         out.write(data2+"<br/>");  
  38.     %>  
  39.     ${data}<!-- 正则表达式 -->  
  40.       
  41.     <!--   
  42.         <jsp:forward page="/1.jsp"></jsp:froward>//配置首页时跳转到servlet  
  43.         <jsp:include page="/1.jsp"></jsp:include><%--pageCpntext.include()动态包含--%>  
  44.           
  45.         //携带参数  
  46.         <jsp:forward page="/1.jsp">  
  47.             <jsp:param name="data" value="data"></jsp:param>  
  48.         </jsp:froward>  
  49.           
  50.     -->  
  51.   </body>  
  52. </html>  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值