applicationcount.jsp
来自「《jsp网站开发技术》中的源代码(清华大学出版社)」· JSP 代码 · 共 20 行
JSP
20 行
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?