open resource with relative path in java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T13:58:58Z http://stackoverflow.com/feeds/question/573679 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/573679/open-resource-with-relative-path-in-java 4 open resource with relative path in java GIANCARLO 2009-02-21T20:26:28Z 2009-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/ -&gt; this is the dir I need to get ./package1/resources/repository/SSL-Key/cert.jks -&gt; 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#573714 0 Answer by RichH for open resource with relative path in java RichH 2009-02-21T20:45:44Z 2009-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#573715 4 Answer by jonathan.cone for open resource with relative path in java jonathan.cone 2009-02-21T20:46:13Z 2009-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#573731 0 Answer by Tom Hawtin - tackline for open resource with relative path in java Tom Hawtin - tackline 2009-02-21T20:52:43Z 2009-02-21T20:52:43Z <pre><code>resourcesloader.class.getClass() </code></pre> <p>Can be broken down to:</p> <pre><code>Class&lt;resourcesloader&gt; clazz = resourceloader.class; Class&lt;Class&gt; 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#573994 0 Answer by nbeyer for open resource with relative path in java nbeyer 2009-02-22T00:10:36Z 2009-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>