My code runs inside a jar file, say foo.jar, and I need to know, in the code, in which folder the running foo.jar is.
So, if foo.jar is in C:\FOO\, I want to get that path no matter what my current working directory is.
|
My code runs inside a jar file, say foo.jar, and I need to know, in the code, in which folder the running foo.jar is. So, if foo.jar is in C:\FOO\, I want to get that path no matter what my current working directory is. |
|||||||||
|
Obviously, this will do odd things if your class was loaded from a non-file location. |
|||||||||||||||||||
|
|
Best solution for me:
This should solve the problem with spaces and special characters. |
|||||||||||||||||||
|
|
You can also use:
|
|||||
|
|
To obtain the
It is important to understand both steps, and not conflate them. Once you have the Step 1:
|
|
Use ClassLoader.getResource() to find the URL for your current class. For example:
(This example taken from a similar question.) To find the directory, you'd then need to take apart the URL manually. See the JarClassLoader tutorial for the format of a jar URL. |
|||||||
|
The path always refers to the resource within the jar file. |
|||||||||||
|
|
Here's upgrade to other comments, that seem to me incomplete for the specifics of: - using a relative "folder" outside .jar file (in the jar's same location).
|
||||
|
|
Actually here is a better version - the old one failed if a folder name had a space in it.
As for failing with applets, you wouldn't usually have access to local files anyway. I don't know much about JWS but to handle local files might it not be possible to download the app.? |
||||
|
|
|
the selected answer above is not working if you run your jar by click on it from Gnome desktop environment (not from any script or terminal). Instead, I have fond that the following solution is working everywhere:
|
|||||||||
|
|
After 3 full hours of searching I wrote this and to let others not search 3 hours too, I am posting my solution
tested in windows only |
||||
|
|
Ignore backup lad answer, it may look ok sometimes but has several problems: here both should be +1 not -1:
Very dangerous because is not immediately evident if the path has no white spaces, but replacing just the "%" will leave you with a bunch of 20 in each white space:
There are better ways than that loop for the white spaces. Also it will cause problems at debugging time. |
|||
|
|
Works good on Windows |
|||
|
|
|
This method, called from code in the archive, returns the folder where the .jar file is. It should work in either Windows or Unix.
Derived from code at: Determine if running from JAR |
|||||
|