我有一个文件存储在我的 netbeans 项目中,路径如下:
ReportCSV/ReportDownload.csv
我在我的 struts 动作类中有以下代码来写入这个文件:
CSVWriter writer = new CSVWriter(new FileWriter("C:\\isis\\src\\main\\webapp\\ReportCSV\\ReportDownload.csv"), '\t');
//feed in your array (or convert your data to an array)
String[] entries = "first#second#third".split("#");
writer.writeNext(entries);
writer.close();
在这里,指定确切的文件路径是可行的,但我想让这个路径相对。我试过"\\ReportCSV\\ReportDownload.csv"
了,但它不起作用。知道我能做什么吗?任何帮助表示赞赏!谢谢 :)