「Java」ServletContextクラスのgetRealPath()で絶対パスを取得する

2021年8月24日

関数
public String getRealPath(String path);
絶対パスを返します。

使用例

ServletContext context = this.getServletContext();
String filePath = "/WEB-INF/view/jsp/news.jsp";

response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
out.println("<html><body>");
out.println("path:" + context.getRealPath(filePath));
out.println("</body></html>");

 

Java

Posted by arkgame