当前位置: 技术问答>java相关
jswdk+jdk1.3环境下application问题
来源: 互联网 发布时间:2015-01-18
本文导语: 为什么我在jswdk下的jsp文件中不能用: application.putValue("name","test"); 也不能用:application.setAttribute("name","test"); 谁告诉我为什么,我就马上给分。 | 有时服务器需要管理面向整个应用的参数,使得每个...
为什么我在jswdk下的jsp文件中不能用:
application.putValue("name","test");
也不能用:application.setAttribute("name","test");
谁告诉我为什么,我就马上给分。
application.putValue("name","test");
也不能用:application.setAttribute("name","test");
谁告诉我为什么,我就马上给分。
|
有时服务器需要管理面向整个应用的参数,使得每个客户都能获得同样的参数值。和Session一样,ASP使用Application对象而JSP使用ServletContext对象,操作的方法和Session一样。
getServletContext().setAttribute("Item",ItemValue);//设置一个应用变量
Integeri=(Integer)getServletContext().getAttribute("ItemName");//得到//item
getServletContext().setAttribute("Item",ItemValue);//设置一个应用变量
Integeri=(Integer)getServletContext().getAttribute("ItemName");//得到//item