0

我正在使用 slf4j 来管理我的应用程序日志记录。

我想在配置 log4j.properties 后更改输出文件的名称。我的意思是,文件名是进入我的程序并且是可变的参数。我想从 java 更改这个 slf4j 属性。

有谁知道这是否可能?

提前致谢!

4

1 回答 1

2

最后我解决了这个问题:

public void updateFichierLogNames(String warnFileName, String infoFileName, String errorFileName) {
        Properties props = new Properties(); 
    try { 
        InputStream configStream = getClass().getResourceAsStream( "/log4j.properties"); 
        props.load(configStream); 
        configStream.close(); 
    } catch (IOException e) { 
        System.out.println("Error: Cannot laod configuration file"); 
    } 

    props.setProperty("log4j.appender.infoFile.File", infoFileName); 
    props.setProperty("log4j.appender.warnFile.File", warnFileName); 
    props.setProperty("log4j.appender.errorFile.File", errorFileName); 

    LogManager.resetConfiguration(); 
    PropertyConfigurator.configure(props); 

    }
}
于 2013-09-10T13:29:20.380 回答