Example usage for org.apache.commons.lang3 SystemUtils JAVA_HOME

List of usage examples for org.apache.commons.lang3 SystemUtils JAVA_HOME

Introduction

In this page you can find the example usage for org.apache.commons.lang3 SystemUtils JAVA_HOME.

Prototype

String JAVA_HOME

To view the source code for org.apache.commons.lang3 SystemUtils JAVA_HOME.

Click Source Link

Document

The java.home System Property.

Usage

From source file:org.apache.bcel.generic.JDKGenericDumpTestCase.java

private static Set<String> findJavaHomes() {
    if (SystemUtils.IS_OS_WINDOWS) {
        return findJavaHomesOnWindows();
    }/*from   w w  w  . j  a  v  a  2  s . c  o m*/
    final Set<String> javaHomes = new HashSet<>(1);
    javaHomes.add(SystemUtils.JAVA_HOME);
    return javaHomes;
}