码迷,mamicode.com
首页 > 移动开发 > 详细

include和application

时间:2017-08-03 22:09:38      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:技术分享   page   close   int   mat   blog   form   路径   w3c   

include指令

语法:<%@ include  file=”路径+文件名” %>

把指定的文件包含到当前jsp中。

 

 

application(应用的全局变量)

 

实现用户之间的数据共享

 

常用方法:

 

Application.setAttribute(Stirng key,Object value);

 

Application.getAttribute(String key);

 

技术分享技术分享

 

技术分享
 1 <%@page import="java.text.SimpleDateFormat"%>
 2 <%@page import="java.util.Date"%>
 3 <%@ page language="java" contentType="text/html; charset=utf-8"
 4     pageEncoding="utf-8"%>
 5 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 6 <html>
 7 <head>
 8 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 9 <title>访问人数</title>
10 </head>
11 <body>
12     <%
13         Integer count=(Integer) application.getAttribute("count");
14         if(count != null){
15             count = count+1;
16         }else{
17             count = 1; 
18         }
19         application.setAttribute("count", count);
20     %>
21     
22     <%
23         Integer i=(Integer)application.getAttribute("count") ;
24         out.print("统计访问量:目前有"+i+"个人访问本网站");
25     %>
26     
27 </body>
28 </html>
示例

 

include和application

标签:技术分享   page   close   int   mat   blog   form   路径   w3c   

原文地址:http://www.cnblogs.com/yang82/p/7281725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!