Returns the system property with the specified key.
Syntax
getProperty( key )
getProperty( key , value )
Parameters
key
|
the name of the system property.
|
value
|
is default value to use, when key is not found.
|
Returns
property
|
the value associated with the specified system property.
null if the specified key does not exist and a value was not specified.
|
Example
value = getProperty( "name" )
|