The getAbsolutePath() method is a part of File class. This function returns the absolute pathname of the given file object.If the pathname of the file object is absolute then it simply returns the path of the current file object.
For Example: if we create a file object using the path as “program.txt”, it points to the file present in the same directory where the executable program is kept (if you are using an IDE it will point to the file where you have saved the program ). Here the path of the file mentioned above is “program.txt” but this path is not absolute (i.e. not complete). The function getAbsolutePath() will return the absolute (complete) path from the root directories. If the file object is created with an absolute path then getPath() and getAbsolutePath() will give the same results.
Function Signature:
public String getAbsolutePath()
Function Syntax:
file.getAbsolutePath()
Parameters: This function does not accept any parameters.
Return value: This function returns a String value which is the absolute Path of the given File object.
Exception: This method throws Security Exception if the required property value cannot be accessed.
Below programs will illustrate the use of getAbsolutePath() method:
Example 1: A file named “program.txt” is in the present working directory.
import java.io.*;
public class solution {
public static void main(String args[])
{
try {
File f = new File( "program.txt" );
String absolute = f.getAbsolutePath();
System.out.println( "Original path: "
+ f.getPath());
System.out.println( "Absolute path: "
+ absolute);
}
catch (Exception e) {
System.err.println(e.getMessage());
}
}
}
|
Output:
Original Path: program.txt
Absolute Path: C:\Users\pc\eclipse-workspace1\arnab\program.txt

Example 2: A directory named “program” is in the present working directory.
import java.io.*;
public class solution {
public static void main(String try - catch {
try {
File f = new File( "program" );
String absolute = f.getAbsolutePath();
System.out.println( "Original path: "
+ f.getPath());
System.out.println( "Absolute path: "
+ absolute);
}
catch (Exception e) {
System.err.println(e.getMessage());
}
}
}
|
Output:
Original Path: program
Absolute Path: C:\Users\pc\eclipse-workspace1\arnab\program

Example 3: A file named “f:\program.txt” in the “f:\” directory.
import java.io.*;
public class solution {
public static void main(String args[])
{
try {
File f = new File( "f:\\program.txt" );
String absolute = f.getAbsolutePath();
System.out.println( "Original path: "
+ f.getPath());
System.out.println( "Absolute path: "
+ absolute);
}
catch (Exception e) {
System.err.println(e.getMessage());
}
}
}
|
Output:
Original file path: f:\program.txt
Absolute file path: f:\program.txt

The programs might not run in an online IDE . please use an offline IDE and set the path of the file
Feeling lost in the vast world of Backend Development? It's time for a change! Join our
Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
- Comprehensive Course
- Expert Guidance for Efficient Learning
- Hands-on Experience with Real-world Projects
- Proven Track Record with 100,000+ Successful Geeks
Last Updated :
30 Jan, 2019
Like Article
Save Article