Get system property in boolean value

static boolean getBoolean(String name)
Gets system property.

public class Main {

  public static void main(String[] args) {
    System.setProperty("myKey", "true");
    Boolean boolean1 = Boolean.getBoolean("myKey");
    System.out.println(boolean1);

  }
}

The output:


true
Home 
  Java Book 
    Essential Classes  

Boolean:
  1. Boolean class
  2. Get boolean value from constants in Boolean class
  3. Convert to primitive boolean value
  4. Use Boolean value constructors
  5. Compare two boolean values
  6. Get system property in boolean value
  7. Convert string to boolean
  8. Convert boolean to string