java.lang.System.getSecurityManager()方法實例
java.lang.System.getSecurityManager() 方法獲取係統的安全接口。
聲明
以下是java.lang.System.getSecurityManager()方法的聲明
public static SecurityManager getSecurityManager()
參數
-
NA
返回值
此方法返回安全管理如果安全管理器已經建立了當前應用程序,否則返回null。
異常
-
NA
例子
下麵的例子顯示java.lang.System.getSecurityManager()方法的使用。
package com.yiibai; import java.lang.*; 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.."); } } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Windows XP SecurityManager not been established..