📄 applicationcount.jsp
字号:
<%@ page language="java"%>
<html>
<head><title>Counter</title></head>
<body BGcolor=gray>
<%
Integer count = null;
synchronized (application) {
count=(Integer)application.getAttribute("basic");
if (count == null){
count= new Integer(0);
}
count = new Integer(count.intValue() + 1);
application.setAttribute("basic", count);
}
%>
<h1>
<font color=white>欢迎来学习JSP,你是第<%= count %>位来访者.</<%= count %></font>
</h1>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -