app2.jsp

来自「新闻系统的具体的一块」· JSP 代码 · 共 24 行

JSP
24
字号
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?