The Java System getSecurityManager() method gets the system security interface.
DeclarationFollowing is the declaration for java.lang.System.getSecurityManager() method
public static SecurityManager getSecurityManager()Parameters
NA
Return ValueThis method returns the security manager if that security manager has already been established for the current application, else null is returned.
ExceptionNA
Example: Getting Security ManagerThe following example shows the usage of Java System getSecurityManager() method. In this program, we've retrieved the SecurityManager status and printed a message if security manager is not established.
package com.tutorialspoint; public class SystemDemo { public static void main(String[] args) { // prints the name of the Operating System System.out.println(System.getProperty("os.name")); SecurityManager s = System.getSecurityManager(); if(s == null) { System.out.println("SecurityManager not been established.."); } } }Output
Let us compile and run the above program, this will produce the following result −
Windows 11 SecurityManager not been established..
java_lang_system.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4