Example usage for java.lang System getenv

List of usage examples for java.lang System getenv

Introduction

In this page you can find the example usage for java.lang System getenv.

Prototype

public static String getenv(String name) 

Source Link

Document

Gets the value of the specified environment variable.

Usage

From source file:Main.java

public static void main(String[] args) throws Exception {
    System.out.println(System.getenv("PATH"));

    System.out.println(System.getenv("TEMP"));

    System.out.println(System.getenv("USERNAME"));

}

From source file:Main.java

public static void main(String args[]) {
    System.out.println("PATH = " + System.getenv("PATH"));

    Map<String, String> env = System.getenv();
    for (Iterator<Map.Entry<String, String>> it = env.entrySet().iterator(); it.hasNext();) {
        Map.Entry<String, String> entry = it.next();
        System.out.println(entry.equals(entry));
    }/*from  www  .  ja  v a  2s .  c o  m*/
}

From source file:Main.java

public static void main(String args[]) {
    System.out.println("PATH = " + System.getenv("PATH"));

    Map<String, String> env = System.getenv();
    for (Iterator<Map.Entry<String, String>> it = env.entrySet().iterator(); it.hasNext();) {
        Map.Entry<String, String> entry = it.next();
        System.out.println(entry.hashCode());
    }/*from   w w w  .j  av a 2 s . co  m*/
}

From source file:Main.java

public static void main(String args[]) {
    System.out.println("PATH = " + System.getenv("PATH"));

    Map env = System.getenv();
    for (Iterator it = env.entrySet().iterator(); it.hasNext();) {
        Map.Entry entry = (Map.Entry) it.next();
        System.out.println(entry.getKey() + " = " + entry.getValue());
    }// www  . j  av  a  2 s.  c  o  m
}

From source file:Main.java

public static void main(String args[]) {
    System.out.println("PATH = " + System.getenv("PATH"));

    Map<String, String> env = System.getenv();
    for (Iterator<Map.Entry<String, String>> it = env.entrySet().iterator(); it.hasNext();) {
        Map.Entry<String, String> entry = it.next();
        System.out.println(entry.getKey() + " = " + entry.getValue());
    }//from  ww  w .  j av a2s  . com
}

From source file:Main.java

public static void main(String args[]) {
    System.out.println("PATH = " + System.getenv("PATH"));

    Map<String, String> env = System.getenv();
    for (Iterator<Map.Entry<String, String>> it = env.entrySet().iterator(); it.hasNext();) {
        Map.Entry<String, String> entry = it.next();
        entry.setValue("None");
    }//from w  ww .j av a 2  s . c  o  m
}

From source file:GetVersion.java

public static void main(String[] args) {
    System.out.println(System.getProperty("java.specification.version"));
    System.out.println("System.getenv(\"PATH\") = " + System.getenv("PATH"));
}

From source file:MainClass.java

public static void main(String[] a) throws Exception {
    System.out.println("System.getenv(\"PATH\") = " + System.getenv("PATH"));
}

From source file:com.mycompany.gdp_service.Main.java

public static void main(String[] args) throws URISyntaxException {

    Integer port = Integer.valueOf(System.getenv("PORT"));

    URIBuilder builder = new URIBuilder();
    URI address = builder.setScheme("http").setPath("0.0.0.0").setPort(port).build();

    Endpoint.publish("http://0.0.0.0:" + port + "/gdp", new GDPImpl());
    Endpoint.publish("address", new GDPImpl());
}

From source file:com.orange.cloud.servicebroker.filter.securitygroups.BrokerFilterApplication.java

public static void main(String[] args) {
    if ("true".equals(System.getenv("SKIP_SSL_VALIDATION"))) {
        SSLValidationDisabler.disableSSLValidation();
    }/*w  ww  . j  av  a2 s  .  c o m*/
    SpringApplication.run(BrokerFilterApplication.class, args);
}