Portable Path Separator in Java
Description
The following code shows how to portable Path Separator.
Example
//from w w w . j av a 2 s. c o m
import java.io.File;
public class Main {
public static void main(String[] a) {
File myFile = new File("C:" + File.separator + "jdk1.5.0" + File.separator + "src"
+ File.separator + "java" + File.separator + "io", "File.java");
System.out.println(myFile);
}
}
The code above generates the following result.