📄 getappattr.jsp
字号:
<html>
<head><title>get application attr</title></head>
<body>
<br>get Attribute:<%=application.getAttribute("myname") %>
<br>Counter:
<% int mycounter=Integer.valueOf(application.getAttribute("counter").toString()).intValue();
out.print(mycounter);
application.setAttribute("counter",Integer.toString(mycounter+1));
%>
<br>MyName:<%=application.getAttribute("MyName")%>
<br>YourName:<%=application.getAttribute("YourName")%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -