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.
DeclarationFollowing is the declaration for java.lang.System.getProperty() method
public static String getProperty(String key, String def)Parameters
key − This is the name of the system property.
def − This is a default value.
This method returns the string value of the system property, or null if there is no property with that key.
ExceptionSecurityException − if a security manager exists and its checkPropertyAccess method doesn't allow access to the specified system property.
NullPointerException − if key is null.
IllegalArgumentException − if key is empty.
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 −
defaultPasswordExample: 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