如何在Java中创建文件时在Mac OS X中提供文件路径?

File f = new File("C:\\Temp\\Example.txt");
f.createNewFile();

执行时,将在Temp文件夹中创建名为“Example.txt”的新文件.如何在Mac OS X中提供文件路径?

我试过提供:

File f = new File("\\Users\\pavankumar\\Desktop\\Testing\\Java.txt");
f.createNewFile();

但它对我不起作用.

解决方法:

必须使用正斜杠“/”来获取文件路径.
采用:

File f = new File("/Users/pavankumar/Desktop/Testing/Java.txt");
f.createNewFile();
上一篇:爬虫日记(104):Twisted:客户端实现双向传送协议


下一篇:mac权限检测、申请