You may need to get the path of the WEB-INF folder from your Java Servlet for reading custom configuration files or writing temporary files or doing other related work. In order to get the path of the WEB-INF folder (or its sub folders) from your Java Servlet service methods, you can do this by using the getRealPath()
API in the ServletContext
interface as follows:
String path = getServletContext().getRealPath("/WEB-INF");
If we have for example a folder called xyz
under the WEB-INF
folder, we can get its path as follows:
String path = getServletContext().getRealPath("/WEB-INF/xyz");
Read full article from Getting the path of WEB-INF folder from a Java Servlet | Technical Advices, "An advice can always help"
No comments:
Post a Comment