A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.tutorialspoint.com/java/lang/system_getproperty_string_def.htm below:

Java System getProperty() Method

Java System getProperty() Method Description

The Java System getProperty(String key, String def) method gets the system property indicated by the specified key.The argument def is the default value.

Declaration

Following is the declaration for java.lang.System.getProperty() method

public static String getProperty(String key, String def)
Parameters Return Value

This method returns the string value of the system property, or null if there is no property with that key.

Exception Example: Getting default Value if System Property is not present

The following example shows the usage of Java System getProperty() method. In this example, we've used a non-existing key password. As key is not present, System.getProperty() method returns the default value passed as argument as same is printed.

package com.tutorialspoint;

public class SystemDemo {

   public static void main(String[] args) {

      // gets the system property 
      System.out.println(System.getProperty("password","defaultPassword")); 
   }
}
Output

Let us compile and run the above program, this will produce the following result −

defaultPassword
Example: Getting Value if System Property is present

The following example shows the usage of Java System getProperty() method. In this example, we've used an existing key password. As key is present, System.getProperty() method returns the available value.

package com.tutorialspoint;

public class SystemDemo {

   public static void main(String[] args) {

      // gets the system property 
      System.out.println(System.getProperty("user.name","user")); 
   }
}
Output

Let us compile and run the above program, this will produce the following result −

Tutorialspoint

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