Out对象
Out对象是服务器向用户端打开的Output Stream,JSP可用Out对象将信息发送给客户端。Out对象的常用方法有:
.out.print(数据类型)和out.println(数据类型)
.out.newLine()
.out.clearBuffer()
.out.close()
.out.isAutoFlush()
application对象
每一个web应用,有一个唯一的application对象,被所有的在线用户所共享,当第一个用户登录时,application就存在了,当所有的用户都退出时,application才消失。application的常用方法是:
.getAttribute(String name)
.setAttribute(String name, Object object)
.getAttributeNames()
.getServerInfo()
...
asp教程编程辅导汇总
[ASP]2016年12月2日JSP快速入门教程汇总
[JSP]2016年12月2日jsp基本用法和命令汇总
[JSP]2016年10月3日ASP编码教程:如何实现/使用缓存
[ASP]2015年4月15日ASP编码教程:asp缓存的分类
[ASP]2015年4月15日