0
我們正在以下異常,同時試圖獲得FileOutputStream中輸入文件名: java.lang.Exception的:/ var/tmp中(是一個目錄)獲取異常嘗試獲取FileOutputStream中
請建議什麼都可以錯誤的原因。
其中發生異常代碼片段:
public static FileOutputStream getFileInternal()
{
String pFilename = "/usr/tmp/";
File f = new File(pFilename);
pFilename = f.getCanonicalPath();
FileOutputStream fo = null;
fo = new FileOutputStream(pFilename, true);
return fo;
}
'/ usr/tmp /'不是文件名,使用不以'/'結尾的文件名, –