📄 counter.jsp
字号:
<%
try{
if(session.getAttribute("flag")==null){
if(application.getAttribute("count")==null){
String count;
count="1";
application.setAttribute("count",count);
}else{
int count;
count=Integer.parseInt(application.getAttribute("count").toString())+1;
String str;
str=String.valueOf(count);
application.setAttribute("count",str);
}
String val;
val="true";
session.setAttribute("flag",val);
}
}catch(Exception e){}
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -