获取类路径下资源案例详解
ServletContext是一个域对象,可以通过它实现Servlet之间的数据通信。也就是说ServletContext域中的数据是被应用中的所有资源共享的。传智播客www.itcast.cn高级软件人才实作培训专家!importjavax.servlet.http.httpservletresponseiimport org. apache commons. io.IOUtils;public class Classservlet extends Httpservletpublicvoiddoget(httpServletrequestrequestHttpservletrespcnse responsethrows seryletexceotion, loexceotionClass clazz=this getClass()iInputstream input=clazz getResourceAsstream("/test. txt");String value=TOUtils.tostring(input)System. out.println (value)3.运行结果第一次访问 ClassPath Servlet,控制台打印结果为testⅸt文件的内容,第二次访问Class servlet,控制台打印结果为 test txt文件内容。
用户评论