Java get Absolute Path

In this section, you will study how to obtain the absolute path of a particular file. For this, we have define a file 'MainClass.java'. The method file.getAbsolutePath() returns the absolute path of the given file.

Java get Absolute Path

In this section, you will study how to obtain the absolute path of a particular file. For this, we have define a file 'MainClass.java'. The method file.getAbsolutePath() returns the absolute path of the given file.

Java get Absolute Path

Java get Absolute Path

     

In this section, you will study how to obtain the absolute path of a particular file. For this, we have define a file 'MainClass.java'. The method file.getAbsolutePath() returns the absolute path of the given file.

 

 

 

Here is the code of GetAbsolutePath.java

import java.io.File;

public class GetAbsolutePath {
  public static void main(String args[]) {
  File file = new File("MainClass.java");
  System.out.println("Absolute Path: " + file.getAbsolutePath());
 }
}

Output will be displayed as:

Download Source Code