Use double slash to escape path in Java
Description
The following code shows how to use double slash to escape path.
Example
// w ww. ja v a 2 s.c o m
import java.io.File;
public class Main {
public static void main(String[] a) {
File myDir = new File("C:\\jdk1.5.0\\src\\java\\io");
System.out.println(myDir);
}
}
The code above generates the following result.