How to Get the Path of Running Java Program

How to get the path of running java program

Try this code:

final File f = new File(MyClass.class.getProtectionDomain().getCodeSource().getLocation().getPath());

replace 'MyClass' with your class containing the main method.

Alternatively you can also use

System.getProperty("java.class.path")

Above mentioned System property provides

Path used to find directories and JAR archives containing class files.
Elements of the class path are separated by a platform-specific
character specified in the path.separator property.

How to get the execution directory path in java

As Jarrod Roberson states in his answer here:

One way would be to use the system property
System.getProperty("user.dir"); this will give you "The current
working directory when the properties were initialized". This is
probably what you want. to find out where the java command was
issued, in your case in the directory with the files to process, even
though the actual .jar file might reside somewhere else on the
machine. Having the directory of the actual .jar file isn't that
useful in most cases.

The following will print out the current directory from where the
command was invoked regardless where the .class or .jar file the
.class file is in.

public class Test
{
public static void main(final String[] args)
{
final String dir = System.getProperty("user.dir");
System.out.println("current dir = " + dir);
}
}

if you are in /User/me/ and your .jar file containing the above code
is in /opt/some/nested/dir/ the command java -jar
/opt/some/nested/dir/test.jar Test
will output current dir =
/User/me
.

You should also as a bonus look at using a good object oriented
command line argument parser. I highly recommend JSAP, the Java
Simple Argument Parser. This would let you use
System.getProperty("user.dir") and alternatively pass in something
else to over-ride the behavior. A much more maintainable solution.
This would make passing in the directory to process very easy to do,
and be able to fall back on user.dir if nothing was passed in.

Example : GetExecutionPath

import java.util.*;
import java.lang.*;

public class GetExecutionPath
{
public static void main(String args[]) {
try{
String executionPath = System.getProperty("user.dir");
System.out.print("Executing at =>"+executionPath.replace("\\", "/"));
}catch (Exception e){
System.out.println("Exception caught ="+e.getMessage());
}
}
}

output for the above will be like

C:\javaexamples>javac GetExecutionPath.jav

C:\javaexamples>java GetExecutionPath
Executing at =>C:/javaexamples

How to get the real path of Java application at runtime?

Try;

String path = new File(".").getCanonicalPath();

Can I get the path of the currently running java executable?

ProcessHandle.current() returns the current Java process. You can use that to see the full command in the process handle’s info:

ProcessHandle.current().info().command().ifPresent(
cmd -> System.out.println(cmd));

How to get the path of a running JAR file?

return new File(MyClass.class.getProtectionDomain().getCodeSource().getLocation()
.toURI()).getPath();

Replace "MyClass" with the name of your class.

Obviously, this will do odd things if your class was loaded from a non-file location.



Related Topics



Leave a reply



Submit