Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

SystemPropertiesTest.java 433B

12345678910111213
  1. public class SystemPropertiesTest {
  2. public static void main(String[] args) {
  3. boolean pass = Boolean.getBoolean("PASS");
  4. if (!pass) {
  5. throw new RuntimeException("failed to get Boolean \"PASS\"");
  6. }
  7. String value = System.getProperty("name", null);
  8. if (!"value".equals(value)) {
  9. throw new RuntimeException("failed to get name=\"value\": " + value);
  10. }
  11. }
  12. }