I’ve got a file in my war/WEB-INF folder of my app engine project. I read in the FAQs that you can read a file from there in a servlet context. I don’t know how to form the path to the resource though:
/war/WEB-INF/test/foo.txt
How would I construct my path to that resource to use with File(), just as it looks above?
Thanks
There’s a couple ways of doing this. As long as the WAR file is expanded (a set of files instead of one .war file), you can use this API:
http://tomcat.apache.org/tomcat-5.5-doc/servletapi/javax/servlet/ServletContext.html#getRealPath(java.lang.String)
That will get you the full system path to the resource you are looking for. However, that won’t work if the Servlet Container never expands the WAR file (like Tomcat). What will work is using the ServletContext’s
getResourcemethods.or alternatively if you just want the input stream:
http://tomcat.apache.org/tomcat-5.5-doc/servletapi/javax/servlet/ServletContext.html#getResource(java.lang.String)
The latter approach will work no matter what Servlet Container you use and where the application is installed. The former approach will only work if the WAR file is unzipped before deployment.
EDIT:
The getContext() method is obviously something you would have to implement. JSP pages make it available as the
contextfield. In a servlet you get it from yourServletConfigwhich is passed into the servlet’sinit()method. If you store it at that time, you can get your ServletContext any time you want after that.