vote up 3 vote down star
1

I am trying to get a path to a Resource but I have had no luck.

This works (both in IDE and with the JAR) but this way I can't get a path to a file, only the file contents:

ClassLoader classLoader = getClass().getClassLoader();
printInputStream(classLoader.getResourceAsStream("config/netclient.p"));

If i do this:

ClassLoader classLoader = getClass().getClassLoader();
File file = new File(classLoader.getResource("config/netclient.p").getFile());

The result is: java.io.FileNotFoundException: file:/path/to/jarfile/bot.jar!/config/netclient.p (No such file or directory)

Is there a way to get a path to a resource file?

flag

80% accept rate
May I ask why you would need the path? – mmyers Jun 2 at 20:36
Yes. I've got a class that I would like to work with both, a folder on the outside (in case I want to change some parameter of the config file) and a JAR that hides the implementation configuration files to the user (like a distributable JAR to all people). – Franco Jun 2 at 20:41
So the class just receives a PATH to a file (the config file). – Franco Jun 2 at 20:42
1  
Then you should probably have that class deal with an input stream, which you can get from either source. – Carl Manaster Jun 2 at 20:43
Yes, I know. But it would have been more clear and clean the other way. But thx anyway. – Franco Jun 2 at 20:47
show 3 more comments

3 Answers

vote up 5 vote down check

This is deliberate. The contents of the "file" may not be available as a file. Remember you are dealing with classes and resources that may be part of a JAR file or other kind of resource. The classloader does not have to provide a file handle to the resource, for example the jar file may not have been expanded into individual files in the file system.

Anything you can do by getting a java.io.File could be done by copying the stream out into a temporary file and doing the same, if a java.io.File is absolutely necessary.

link|flag
vote up 2 vote down

if netclient.p is inside a JAR file, it won't have a path because that file is located inside other file. in that case, the best path you can have is really file:/path/to/jarfile/bot.jar!/config/netclient.p.

link|flag
vote up 2 vote down

A File is an abstraction for a file in a filesystem, and the filesystems don't know anything about what are the contents of a JAR.

Try with an URI, I think there's a jar:// protocol that might be useful for your purpouses.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.