可能重复:
Java 打开的文件太多
这不是重复的,引用的问题不同,只有标题相同,请仔细阅读
这是我的文件写入功能
public static void WriteLog(String LogLine) {
String filePath = CommonClass.ReadPropertiesFile("LogFilepath");
BufferedWriter out = null;
try {
// Create file
FileWriter fstream = new FileWriter(filePath, true);
out = new BufferedWriter(fstream);
out.write(LogLine + "\r\n");
} catch (Exception e) {//Catch exception if any
System.err.println("Error: " + e.getMessage());
} finally {
//Close the output stream
if (out != null) {
try {
out.write("Closing stream\r\n");
out.close();
} catch (IOException ex) {
System.err.println("Error Closing stream: " + ex.getMessage());
Logger.getLogger(LogWritter.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
}
我也看到了这个问题,但它似乎没有帮助,如果 close 是一个阻塞调用,那么它不应该给出这个问题。
但是当我太频繁地调用 WriteLog 函数时,即在循环中我得到这个错误:
Error: (No such file or directory)
Could not load properties File, Exception: (Too many open files),
Error: (No such file or directory)
Could not load properties File, Exception: (Too many open files),
在特定数量的调用之后,在每次后续调用中,我都会不断收到此错误,并且文件中不再写入任何文本。谁能告诉我我完全困惑的原因。
提前致谢