include和application

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>

示例

时间: 2024-11-12 15:31:01

include和application的相关文章

Linking code for an enhanced application binary interface (ABI) with decode time instruction optimization

A code sequence made up multiple instructions and specifying an offset from a base address is identified in an object file. The offset from the base address corresponds to an offset location in a memory configured for storing an address of a variable

JSP_&lt;jsp:application&gt;实例

本文出自:http://blog.csdn.net/svitter 实验环境:Myeclipse10 + tomcat7 Application对象为了多个应用程序保存信息,对于每个容器,每个用户都共同拥有一个application对象,服务器启动以后,会自动创建一个application对象,这个对象会一直保持到服务器关闭. 下列实例用于统计页面访问次数. 1.application.jsp <%@ page language="java" import="java.

NDK开发之Application.mk文件详解

做过NDK开发的同学应该都知道有个Application.mk文件,这是android NDK构建系统使用的一个可选构建文件.它的目的是描述应用程序需要哪些模块,也定义了所有模块的一些通用变量.主要有以下几个变量. APP_MODULES,默认情况下,ndk会构建在android.xk文件中声明的所有模块.但是这个变量可是覆盖上述行为. 假如我们的android.mk文件是这样的: LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_

ffmpeg 3.2.4 + libx264 windows 编译总结

___________________________编译环境__________________________________ NDK 环境:android-ndk-r13b MinGW环境:Basic Setup下Mark了所有的项目,FFmpeg需要使用msys环境进行编译 ffmpeg :3.2.4 下载地址 libx264:官网最新 _____________________________________________________________________ ______

什么是Docker

Docker is an open-source project for automating the deployment of applications as portable, self-sufficient containers that can run on the cloud or on-premises. Docker is also a company that promotes and evolves this technology, working in collaborat

VIII docker

docker: 介绍: 镜像管理: 容器管理: 网络访问: 数据管理: 镜像构建: 私有仓库: 核心技术: 生产实践: 生态圈: 一.概念: https://www.docker.com/ Docker is the world's leading software containerization platform.(build,ship,run) docker is an open platform for building,shipping and running distributed

ThinkPHP包含文件

在当前模版文件中包含其他的模版文件使用include标签,标签用法: <include file='模版表达式或者模版文件1,模版表达式或者模版文件2,...' /> 使用模版表达式 模版表达式的定义规则为:模块@主题/控制器/操作 例如: <include file="Public/header" /> // 包含头部模版header <include file="Public/menu" /> // 包含菜单模版menu &l

Echoprint系列--Android编译与调用

在Echoprint系列--编译中编译了源代码,这次将Echoprint移植到Android平台并測试识别歌曲功能. 一.编译库 1.环境准备 Android NDK,我的是android-ndk-r10e 改动源代码,把src中的.cxx的文件重命名为.cpp.把src文件夹重命名为jni Boost源代码.在PC上编译的时候也安装boost的,我的时boost_1_58_0,复制到jni文件夹 2.编写编译配置文件 打开源代码中的main.cpp,看到核心部分就是 codegen_respo

The OAuth 2.0 Authorization Framework-摘自https://tools.ietf.org/html/rfc6749

Internet Engineering Task Force (IETF) D. Hardt, Ed. Request for Comments: 6749 Microsoft Obsoletes: 5849 October 2012 Category: Standards Track ISSN: 2070-1721 The OAuth 2.0 Authorization Framework Abstract The OAuth 2.0 authorization framework enab