开发者

Absolute to relative path (Eclipse, JSP) [duplicate]

This question already has answers here: Where to place and how to read configuration resource files in servlet based application? (6 answers) Closed 6 years ago.

I am making a web application in Eclipse (JSP) and use Tomcat as a server (integrated into Eclipse). I have to create the object below and specify the path to configuration file. This absolute path is working great:

Store store = StoreFactory.create("file:///C:/Users/Aliens/workspace/myProject/WebContent/config/sdb.ttl");

However I am wondering why I can't use relative path. Should it be "config/sdb.ttl" right (开发者_JAVA百科if the name of the project is a root)? But it cannot locate it this way (NotFoundException).


Relative disk file system paths are relative to the current working directory which is dependent on how you started the application (in Eclipse it would be the project folder, in Command console it would be the currently opened folder, in Tomcat manager/service it would be the Tomacat/bin folder, etc). You have no control over this from inside the Java code, so forget about it.

In JSP/Servlet you can use ServletContext#getRealPath() to convert a relative web content path (it has its root in the public webcontent, in your case the /WebContent folder) to an absolute disk file system path. So:

String relativeWebPath = "/config/sdb.ttl";
String absoluteDiskPath = getServletContext().getRealPath(relativeWebPath);
Store store = StoreFactory.create(absoluteDiskPath);
// ...

The ServletContext is available in servlets by the inherited getServletContext() method.


Right/standard/compatible way is to use http://adderpit.com/jdk/j2eedocs/api/javax/servlet/ServletContext.html#getResourceAsStream(java.lang.String)

like

servletContext.getResourceAsStream("config/sdb.ttl");
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜