Get an Absolute Filename Path from a Relative Filename Path in Java

Description

The following code shows how to get an Absolute Filename Path from a Relative Filename Path.

Example


/* w ww.  jav a  2 s. c  o  m*/
import java.io.File;

public class Main {
  public static void main(String[] argv) throws Exception {

    File file = new File("filename.txt");
    file = file.getAbsoluteFile();
  }
}




















Home »
  Java Tutorial »
    I/O »




Binary File
Byte Array
CharSet
Checksum
Console
Create Copy Move Delete
Directory
Drive
Encode Decode
File Attribute
File Lock
File System
GZIP
Jar File
NIO Buffer
Path
Scanner
StreamTokenizer
Temporary File
Text File
Zip