标签:text 登录 amp print sage art 文件内容 XML exce
public class ServletContext01 extends HttpServlet {
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//1.获取对象
ServletContext context = getServletContext();
String address = context.getInitParameter("address");
System.out.println(address);
}
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doGet(request, response);
}
}
web.xml参数设置:
<context-param>
<param-name>address</param-name>
<param-value>中国深圳</param-value>
</context-param>
这个是一个比较经典的doGet和doPost方法的案例,继承了httpservlet类,
我觉得可能刚接触的人应该是 ServletContext context = getServletContext();这句话不是很懂,其实我们可以这么理解,一个servlet可以使用getservletcontext()方法得到了web应用中的servletcontext,从而使用servletcontext接口的一些方法:比如我们可以看到后面的那句话String address = context.getInitParameter("address");实际上就是用了servletcontext接口里面的getInitParameter()方法:而address就是参数的名称,获得的值为中国深圳,所以有没有觉得这样很方便?
------------------------------------------------------------------------------------------------------------------------------------------------------------
刚在另一篇博客里面有看到他对于getservletcontext()方法的解释,可能比较文字古板,(不想看的可以跳过这段,我觉得不忙的话看看也挺好的)
一个servlet上下文是servlet引擎提供用来服务于Web应用的接口。Servlet上下文具有名字(它属于Web应用的名字)唯一映射到文件系统的一个目录。
一个servlet可以通过ServletConfig对象的getServletContext()方法得到servlet上下文的引用,如果servlet直接或间接调用子类GenericServlet,则可以使用getServletContext()方法。
Web应用中servlet可以使用servlet上下文得到:
1.在调用期间保存和检索属性的功能,并与其他servlet共享这些属性。
2.读取Web应用中文件内容和其他静态资源的功能。
3.互相发送请求的方式。
4.记录错误和信息化消息的功能。
-------------------------------------------------------------------------------------------------------------------------------------------------------------
下面总结servletcontext接口里面的方法:
1.String getInitParameter(String name) 返回指定上下文范围的初始化参数值。
2.Object getAttribute(String name) 返回servlet上下文中具有指定名字的对象,或使用已指定名捆绑一个对象。从Web应用的标准观点看,这样的对象是全局对象,因为它们可以被同一servlet在另一时刻访问。或上下文中任意其他servlet访问。
这个方法我用过例子:(我在做计数网站曾经被登录过几次用过这个方法):
下面是我的程序:
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//1.获取数据
String userName = request.getParameter("username"); //httpservletrequest里面的方法。获取请求头中的参数,
String password = request.getParameter("password");
// System.out.println("userName="+userName+"password="+password);
//2.校验数据
PrintWriter pw = response.getWriter(); //用了这个输出流可以直接将文字写在浏览器上
if("admin".equals(userName) && "123".equals(password)) {
pw.write("login success.....");
//如果成功的话,就跳转到login_success.html那里
//成功的次数累加:
//保留之前存的值,然后在旧的值的基础上+1
Object obj = getServletContext().getAttribute("count"); //getAttribute是servlet里面的方法
//默认就是0次
int totalCount = 0;
if(obj != null) {
totalCount = (int)obj;
}
System.out.println("已登录成功的次数是:"+totalCount);
//给这个count赋新的值
getServletContext().setAttribute("count", totalCount+1);
//跳到成功的页面
//设置状态码,进行 重新定位状态码
response.setStatus(302);
//定位跳转的位置是哪一个页面
response.setHeader("Location", "login_success.html");
} else {
pw.write("login failed.....");
}
}
3.String getRealPath(String path) 给定一个URI,返回文件系统中URI对应的绝对路径。如果不能进行映射,返回null。
下面是我写过的程序代码:
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//获取servletcontext对象
ServletContext context = this.getServletContext();
//获取给定的文件在服务器上面的绝对路径
String path = context.getRealPath("");
System.out.println(path);
这个实际上输出的就是文件在电脑中的绝对路径,也就是读取web中的资源文件;
3.void setAttribute(String name,Object obj) 设置servlet上下文中具有指定名字的对象。
下面几个我还没用过,我用了以后有时间再补充吧:
4.Enumeration getAttributeNames() 返回保存在servlet上下文中所有属性名字的枚举。
5.ServletContext getContext(String uripath) 返回映射到另一URL的servlet上下文。在同一服务器中URL必须是以“/”开头的绝对路径。
6.Enumeration getInitParameterNames() 返回(可能为空)指定上下文范围的初始化参数值名字的枚举值。
7.int getMajorVersion() 返回此上下文中支持servlet API级别的最大和最小版本号。
8.int getMinorVersion()
9.String getMimeType(String fileName) 返回指定文件名的MIME类型。典型情况是基于文件扩展名,而不是文件本身的内容(它可以不必存在)。如果MIME类型未知,可以返回null。
10.RequestDispatcher getNameDispatcher(String name) 返回具有指定名字或路径的servlet或JSP的RequestDispatcher。如果不能创建RequestDispatch,返回null。如果指定路径,必须心“/”开头,并且是相对于servlet上下文的顶部。
11.RequestDispatcher getNameDispatcher(String path)
13.URL getResource(String path) 返回相对于servlet上下文或读取URL的输入流的指定绝对路径相对应的URL,如果资源不存在则返回null。
14.InputStream getResourceAsStream(String path)
15.String getServerInfo() 返顺servlet引擎的名称和版本号。
16.void log(String message)
17.void log(String message,Throwable t) 将一个消息写入servlet注册,如果给出Throwable参数,则包含栈轨迹。
18.void removeAttribute(String name) 从servlet上下文中删除指定属性。
---------------------
作者:rnzhiw
来源:CSDN
原文:https://blog.csdn.net/rnzhiw/article/details/83349325
版权声明:本文为博主原创文章,转载请附上博文链接!
Servlet中的getServletContext()方法详解
标签:text 登录 amp print sage art 文件内容 XML exce
原文地址:https://www.cnblogs.com/mmfang/p/12570227.html