Constructing a File Name path

This Java programming tutorial will teach you how you
can construct a file name path. By using the constructing
filename path it is possible to set dynamic path, which is helpful for mapping
local file name with the actual path of the file.
Java API has provided us many packages, one of them is
java.io package. This package contains a File class In this example we are using one static final variable of
File class i.e.. separatorChar. The value of this separator is system
dependent. If we are using Windows platform then the value of this
separator is ' \ ' .
The code of the program is given below:
import java.io.*;
public class ConstructingFileNamePath {
public static void main(String[] args){
String filepath = File.separatorChar + "java" + File.separatorChar + "example";
System.out.println("The path of the file is : " + filepath);
}
}
|
Output of this program is given below:
C:\java>java ConstructingFileNamePath
The path of the file is : \java\example |
Download
this example

|