Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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 (if the name of the project is a root)? But it cannot locate it this way (NotFoundException).

like image 724
Aliens Avatar asked Aug 29 '10 20:08

Aliens


1 Answers

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.

like image 55
BalusC Avatar answered Sep 23 '22 00:09

BalusC