📄 app2.jsp
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%Integer count=null;
synchronized(application){
count=(Integer)application.getAttribute("basic.counter");
if(count==null)
count=new Integer(0);
count=new Integer(count.intValue()+1);
application.setAttribute("basic.counter",count);
}
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>简单计数器</title>
</head>
<body>
<center>
<font size=10 color=blue>简单计数器<br></font>
<font size=5 color=blue>您好!您是本站的第<%=count%>位客人</font>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -