如何在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();
标签:creation,java,macos,file 来源: https://codeday.me/bug/20191006/1861807.html