我有这段代码:
private static void saveMetricsToCSV(String fileName, double[] metrics) {
try {
FileWriter fWriter = new FileWriter(
System.getProperty("user.dir") + "\\output\\" +
fileTimestamp + "_" + fileDBSize + "-" + fileName + ".csv"
);
BufferedWriter csvFile = new BufferedWriter(fWriter);
for(int i = 0; i < 4; i++) {
for(int j = 0; j < 5; j++) {
csvFile.write(String.format("%,10f;", metrics[i+j]));
}
csvFile.write(System.getProperty("line.separator"));
}
csvFile.close();
} catch(IOException e) {
System.out.println(e.getMessage());
}
}
但是我收到了这个错误:
C:\用户\ Nazgulled \文件\工作区\Só 吾友\输出\ 1274715228419_5000一览ImportDatabase.csv (系统找不到路径 指定)
知道为什么吗?
如果重要的话,我在Windows 7上使用NetBeans ......
答案 0 :(得分:12)
通常,只有父目录存在时,Java才会创建不存在的文件。 您应该检查/创建目录树:
String filenameFullNoPath = fileTimestamp + "_" + fileDBSize + "-"
+ fileName + ".csv";
File myFile = new File(System.getProperty("user.dir") + File.separator
+ "output" + File.separator + filenameFullNoPath);
File parentDir = myFile.getParentFile();
if(! parentDir.exists())
parentDir.mkdirs(); // create parent dir and ancestors if necessary
// FileWriter does not allow to specify charset, better use this:
Writer w = new OutputStreamWriter(new FileOutputStream(myFile),charset);
答案 1 :(得分:2)
您可以使用getParentFile
(Java Doc)来确保父目录存在。以下将检查父目录是否存在,如果不存在则创建它。
File myFile = new File(fileName);
if(!myFile.getParentFile.exists()) {
myFile.getParentFile.mkdirs();
}
答案 2 :(得分:1)
我猜测“输出”目录不存在。尝试添加:
new File(System.getProperty("user.dir") + File.separator + "output").mkdir();