blob: 756d1139301df93a67317d007ccdf1b7452f227c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/*
* JavaVersion returns the version of java interpreter running it. Inspired by
* "libraries/javacheck/JavaCheck.java" in PrismLauncher.
*/
public final class JavaVersion {
public static void main(String[] args) {
System.out.println(System.getProperty("java.version"));
}
}
|