當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java LogManager getProperty()用法及代碼示例


java.util.logging.LogManager的getProperty()方法用於獲取此LogManager實例中指定的propertyName的值。如果存在,此方法將在此LogManager中獲取此屬性。如果不存在,則此方法返回null。

用法:

public String getProperty(String propertyName)

參數:此方法接受參數propertyName,該參數是要在此LogManager實例中獲取的屬性的名稱。


返回值:如果此屬性存在,則此方法在此LogManager中返回此屬性的名稱。如果不存在,則此方法返回null。

以下示例程序旨在說明getProperty()方法:

// Java program to illustrate 
// LogManager getProperty() method 
  
import java.util.logging.*; 
import java.util.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Create LogManager object 
        LogManager logManager 
            = LogManager.getLogManager(); 
  
        String propertyName = "GFG"; 
        System.out.println( 
            "\nGet Property value of "
            + propertyName + ": "
            + logManager.getProperty(propertyName)); 
  
        propertyName = "Global"; 
        System.out.println( 
            "\nGet Property value of "
            + propertyName + ": "
            + logManager.getProperty(propertyName)); 
    } 
}
輸出:
Get Property value of GFG: null

Get Property value of Global: null

參考: https://docs.oracle.com/javase/9/docs/api/java/util/logging/LogManager.html#getProperty-java.lang.String-



相關用法


注:本文由純淨天空篩選整理自guptayashgupta53大神的英文原創作品 LogManager getProperty() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。