本帖最后由 小强皮厚 于 2017-11-29 21:07 编辑
---ServletConfig对象:用来获得Servlet的配置信息.
---ServletContext对象: * 1.获得全局初始化参数
* 2.获得文件的MIME的类型 String type = this.getServletContext().getMimeType("1.html");
* 3.作为域对象存取数据. ServletContext servletContext = this.getServletContext(); servletContext.setAttribute("count",0);
* 4.读取web项目中的文件. InputStream is = ReadFileUtils.class.getClassLoader().getResourceAsStream("db.properties"); Properties properties = new Properties(); properties.load(is);
|