Thursday, April 2, 2026
HomeLanguagesJavaLogManager checkAccess() method in Java with Examples

LogManager checkAccess() method in Java with Examples

The checkAccess() method of java.util.logging.LogManager is used to check if this context has the permissions to modify the logging configuration, which requires LoggingPermission(“control”). This method throws SecurityException if the exception condition occurs, as given below

Syntax:

public void checkAccess()
  throws SecurityException

Parameters: This method does not accepts any parameter.

Return Value: This method does not return anything. It just checks if this context has the permissions to modify the logging configuration.

Exceptions: This method throws following exceptions:

  • SecurityException: if a security manager exists while the caller does not have logging permissions.

Below programs illustrate checkAccess() method:




// Java program to illustrate
// LogManager checkAccess() 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(
                "Checking for permissions\n");
  
            // Checking for permissions
            // using checkAccess() method
            logManager.checkAccess();
        }
        catch (SecurityException e) {
            System.out.println("Permission Denied");
        }
    }
}


Output:

LogManager: java.util.logging.LogManager@1540e19d
Checking for permissions

Permission Denied

Reference: https://docs.oracle.com/javase/9/docs/api/java/util/logging/LogManager.html#checkAccess–

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32509 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6885 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12100 POSTS0 COMMENTS
Shaida Kate Naidoo
7013 POSTS0 COMMENTS
Ted Musemwa
7257 POSTS0 COMMENTS
Thapelo Manthata
6968 POSTS0 COMMENTS
Umr Jansen
6958 POSTS0 COMMENTS