标签:des io 使用 sp java on bs nbsp res
javax.servlet.Servlet接口定义了如下五个方法:P33
public void init(ServletConfig config) throws ServletException;
public void service(ServletRequest req,ServletResponse resp) throws ServletException,java.io.IOException;
public void destroy();
public ServletConfig getServletConfig();
public String getServletInfo();
每一个servlet实例,init()方法只能调用一次。
servlet容器使用ServletConfig对象在Servlet初始化期间向它传递配置信息,一个Servlet只有一个ServletConfig对象。
标签:des io 使用 sp java on bs nbsp res
原文地址:http://www.cnblogs.com/yzdqxing/p/4119942.html