1

可能重复:
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), 

在特定数量的调用之后,在每次后续调用中,我都会不断收到此错误,并且文件中不再写入任何文本。谁能告诉我我完全困惑的原因。

提前致谢

4

3 回答 3

3

看看 ReadPropertiesFile()

CommonClass.ReadPropertiesFile("LogFilepath");

我想 close() 丢失了...

坏的:

properties.load( new FileInputStream( PropertiesFilePath ));

更好的:

InputStream is = new FileInputStream( PropertiesFilePath );
properties.load( is );
is.close();

但是 AMHO 可以在每次运行时读取一次 PropertiesFile,而不是每次需要属性值时

于 2012-10-15T19:04:48.350 回答
2

只需阅读您的属性文件一次。

private static String filePath = CommonClass.ReadPropertiesFile("LogFilepath");
public static void WriteLog(String LogLine) {
    ...

CommonClass.ReadPropertiesFile 背后的代码可能有问题。

于 2012-10-15T19:04:41.720 回答
0

尝试关闭文件:

        fstream.close();

我已经用你的代码测试了它。

于 2012-10-15T19:13:13.827 回答