D:\\users\_themes\m.dat
应为:
file("D:\\users\\_themes\\m.dat");
或
file("D:/users/_themes/m.dat");
在Unix/Linux中,路径的分隔采用正斜杠"/",比如"/home/hutaow";而在Windows中,路径分隔采用反斜杠"\",比如"C:\Windows\System"。
有时我们会看到这样的路径写法,"C:\\Windows\\System",也就是用两个反斜杠来分隔路径,这种写法在网络应用或编程中经常看到,事实上,上面这个路径可以用"C:/Windows/System"来代替
所以为了省事可以直接用斜杠还代替反斜杠(反斜杠还需要转义,当然只是在表示文件路径的时候)
File f = new File("e:\\\\my.sql");
System.out.println(f.exists()); true
File f1 = new File("e:\\my.sql");
System.out.println(f1.exists()); true
File f2 = new File("e:/my.sql");
System.out.println(f2.exists()); true
File f3 = new File("e://my.sql");
System.out.println(f3.exists()); true
原文:http://www.cnblogs.com/straybirds/p/5118490.html