我在
File file=new File("D:/backTradeOrder.xls");
if(!file.exists())
{
try {
file.createNewFile();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
FileOutputStream fout = new FileOutputStream(file);
wb.write(fout);
用了絕對路徑,在widows上跑沒問題,上傳到linux就報錯:
java.io.FileNotFoundException: D:/TradeOrder.xls (No such file or directory)
哥們,報錯的提示是文件路徑不對。
D:/TradeOrder.xls
上面這樣的路徑根本就不是個linux文件路徑嘛。