|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.tools.ant.util.JavaEnvUtils
public final class JavaEnvUtils
A set of helper methods related to locating executables or checking conditons of a given Java installation.
Field Summary | |
---|---|
static java.lang.String |
JAVA_1_0
Version constant for Java 1.0 |
static java.lang.String |
JAVA_1_1
Version constant for Java 1.1 |
static java.lang.String |
JAVA_1_2
Version constant for Java 1.2 |
static java.lang.String |
JAVA_1_3
Version constant for Java 1.3 |
static java.lang.String |
JAVA_1_4
Version constant for Java 1.4 |
static java.lang.String |
JAVA_1_5
Version constant for Java 1.5 |
static java.lang.String |
JAVA_1_6
Version constant for Java 1.6 |
Method Summary | |
---|---|
static java.io.File |
createVmsJavaOptionFile(java.lang.String[] cmd)
Writes the command into a temporary DCL script and returns the corresponding File object. |
static java.lang.String |
getJavaHome()
Return the value of ${java.home} |
static java.lang.String |
getJavaVersion()
Returns the version of Java this class is running under. |
static int |
getJavaVersionNumber()
Returns the version of Java this class is running under. |
static java.lang.String |
getJdkExecutable(java.lang.String command)
Finds an executable that is part of a JDK installation based on the java.home system property. |
static java.lang.String |
getJreExecutable(java.lang.String command)
Finds an executable that is part of a JRE installation based on the java.home system property. |
static java.util.Vector |
getJrePackages()
get a vector of strings of packages built into that platforms runtime jar(s) |
static java.util.Vector |
getJrePackageTestCases()
Testing helper method; kept here for unification of changes. |
static boolean |
isAtLeastJavaVersion(java.lang.String version)
Compares the current Java version to the passed in String - assumes the argument is one of the constants defined in this class. |
static boolean |
isJavaVersion(java.lang.String version)
Compares the current Java version to the passed in String - assumes the argument is one of the constants defined in this class. |
static boolean |
isKaffe()
Checks whether the current Java VM is Kaffe. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String JAVA_1_0
public static final java.lang.String JAVA_1_1
public static final java.lang.String JAVA_1_2
public static final java.lang.String JAVA_1_3
public static final java.lang.String JAVA_1_4
public static final java.lang.String JAVA_1_5
public static final java.lang.String JAVA_1_6
Method Detail |
---|
public static java.lang.String getJavaVersion()
public static int getJavaVersionNumber()
public static boolean isJavaVersion(java.lang.String version)
JAVA_1_0
and
JAVA_1_1
need no longer be tested for.
version
- the version to check against the current version.
public static boolean isAtLeastJavaVersion(java.lang.String version)
JAVA_1_0
and
JAVA_1_1
need no longer be tested for.
version
- the version to check against the current version.
public static boolean isKaffe()
public static java.lang.String getJreExecutable(java.lang.String command)
java
, keytool
,
policytool
, orbd
, rmid
,
rmiregistry
, servertool
and
tnameserv
are JRE executables on Sun based
JRE's.
You typically find them in JAVA_HOME/jre/bin
if
JAVA_HOME
points to your JDK installation. JDK
< 1.2 has them in the same directory as the JDK
executables.
command
- the java executable to find.
public static java.lang.String getJdkExecutable(java.lang.String command)
You typically find them in JAVA_HOME/bin
if
JAVA_HOME
points to your JDK installation.
command
- the java executable to find.
public static java.util.Vector getJrePackageTestCases()
public static java.util.Vector getJrePackages()
public static java.io.File createVmsJavaOptionFile(java.lang.String[] cmd) throws java.io.IOException
cmd
- the command.
java.io.IOException
- if there is an error writing to the file.public static java.lang.String getJavaHome()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |