Java中的 LogManager reset() 方法及示例
Java.util.logging.LogManager的reset()方法用于重置日志配置。如果发生异常情况,此方法将抛出 SecurityException,如下所示
句法:
public void reset() throws SecurityException
参数:此方法不接受任何参数。
返回值:此方法不返回任何内容。它只是重置日志记录配置。
异常:此方法引发以下异常:
- SecurityException:如果存在安全管理器,而调用者没有日志记录权限。
下面的程序说明了 reset() 方法:
// Java program to illustrate
// LogManager reset() method
import java.util.logging.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
try {
// Create LogManager object
LogManager logManager
= LogManager.getLogManager();
System.out.println("LogManager: "
+ logManager);
System.out.println("Resetting the logging configuration");
// Resetting the logging configuration
// using reset() method
logManager.reset();
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
LogManager: java.util.logging.LogManager@1540e19d
Resetting the logging configuration
java.security.AccessControlException:
access denied ("java.util.logging.LoggingPermission" "control")
参考: https://docs.oracle.com/javase/9/docs/api/ Java/util/logging/LogManager.html#reset–