如何在jsp中获取正确的路径

时间:2014-04-23 15:41:57

标签: jsp path tomcat8

我想在jsp文件中定义一个路径

<% String paths = "/test/abc.txt"; %>

但它始终显示我 - 文件无法找到错误
我正在使用tomcat8服务器和我的index.jsp文件放在同一级别的txt文件中,都在测试文件夹内。

webapps/test/index.jsp
webapps/test/abc.txt

1 个答案:

答案 0 :(得分:1)

当您的路径位于webapp上下文中时,请使用application.getRealPath("/")

<% String paths = application.getRealPath("/") + "abc.txt"; %>