open resource with relative path in java - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T13:58:58Zhttp://stackoverflow.com/feeds/question/573679http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/573679/open-resource-with-relative-path-in-java4open resource with relative path in javaGIANCARLO2009-02-21T20:26:28Z2009-02-22T00:10:36Z
<p>In my java app I need to get some files and dirs.</p>
<p>This is the program structure</p>
<pre><code>`./main.java
./package1/guiclass.java
./package1/resources/resourcesloader.java
./package1/resources/repository/modules/ -> this is the dir I need to get
./package1/resources/repository/SSL-Key/cert.jks -> this is the file I need to get`
</code></pre>
<p>gui class loads the resourcesloader class which will load my resources (dir and file)</p>
<p>About the file I tried with </p>
<pre><code>resourcesloader.class.getClass().getResource("repository/SSL-Key/cert.jks").toString()
</code></pre>
<p>in order to get the real path, but this way does not work...</p>
<p>About the dir I have no idea how to do...</p>
<p>Suggestions?
Thanks</p>
http://stackoverflow.com/questions/573679/open-resource-with-relative-path-in-java/573714#5737140Answer by RichH for open resource with relative path in javaRichH2009-02-21T20:45:44Z2009-02-21T20:45:44Z<p>Doe the following work?</p>
<pre><code>resourcesloader.class.getClass().getResource("/package1/resources/repository/SSL-Key/cert.jks")
</code></pre>
<p>Is there a reason you can't specify the full path including the package?</p>
http://stackoverflow.com/questions/573679/open-resource-with-relative-path-in-java/573715#5737154Answer by jonathan.cone for open resource with relative path in javajonathan.cone2009-02-21T20:46:13Z2009-02-21T20:58:08Z<p>Supply the path relative to the classloader, not the class you're getting the loader from. For instance:</p>
<pre><code>resourcesloader.class.getClassLoader().getResource("package1/resources/repository/SSL-Key/cert.jks").toString();
</code></pre>
http://stackoverflow.com/questions/573679/open-resource-with-relative-path-in-java/573731#5737310Answer by Tom Hawtin - tackline for open resource with relative path in javaTom Hawtin - tackline2009-02-21T20:52:43Z2009-02-21T20:52:43Z<pre><code>resourcesloader.class.getClass()
</code></pre>
<p>Can be broken down to:</p>
<pre><code>Class<resourcesloader> clazz = resourceloader.class;
Class<Class> classClass = clazz.getClass();
</code></pre>
<p>Which means you're trying to load the resource using a bootstrap class.</p>
<p>Instead you probably want something like:</p>
<pre><code>resourcesloader.class.getResource("repository/SSL-Key/cert.jks").toString()
</code></pre>
<p>If only javac warned about calling static methods on non-static contexts...</p>
http://stackoverflow.com/questions/573679/open-resource-with-relative-path-in-java/573994#5739940Answer by nbeyer for open resource with relative path in javanbeyer2009-02-22T00:10:36Z2009-02-22T00:10:36Z<p>When you use 'getResource' on a Class, a relative path is resolved based on the package the Class is in. When you use 'getResource' on a ClassLoader, a relative path is resolved based on the root folder.</p>
<p>If you use an absolute path, both 'getResource' methods will start at the root folder.</p>