我最近在学习Java日志记录,在javadoc中,它说可以使用属性“java.util.logging.SimpleFormatter.format”配置SimpleFormatter。
在下面的代码中,我尝试使用System.setProperty()两次“设置格式”,但似乎在第二次尝试中不起作用,下面代码中的“formatterB”仍将使用“ formatterA”。
这是什么原因,谢谢。
public class Test {
public static void main(String[] args) {
try {
Logger loggerA = Logger.getLogger("A");
System.setProperty("java.util.logging.SimpleFormatter.format", "A: %1$tc %2$s%n%4$s: %5$s%6$s%n"); // first attempt
Handler handlerA = new FileHandler("A.log", 0, 1, true);
SimpleFormatter formatterA = new SimpleFormatter();
handlerA.setFormatter(formatterA);
loggerA.addHandler(handlerA);
loggerA.info("Logger A info message");
Logger loggerB = Logger.getLogger("B");
System.setProperty("java.util.logging.SimpleFormatter.format", "B: %1$tc %2$s%n%4$s: %5$s%6$s%n"); // second attempt
Handler handlerB = new FileHandler("B.log", 0, 1, true);
SimpleFormatter formatterB = new SimpleFormatter();
handlerB.setFormatter(formatterB);
loggerB.addHandler(handlerB);
loggerB.info("Logger B info message");
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
答案 0 :(得分:2)
在类加载时存储一次的SimpleFormatter stores the format in a static field。该格式用于SimpleFormatter类的所有实例。
您必须使用自己的格式化程序类来支持多种格式。