Answers:
这些文章似乎建议检查1.5
或1.6
前缀应该起作用,因为它遵循正确的版本命名约定。
java.version
系统属性”java.version
系统属性”java.version
是每个JVM中都存在的系统属性。有两种可能的格式:
1.6.0_23
,1.7.0
,1.7.0_80
,1.8.0_211
9.0.1
,11.0.4
,12
,12.0.1
这是提取主要版本的技巧:如果它是1.x.y_z
版本字符串,则提取字符串索引2处的字符。如果是x.y.z
版本字符串,则将其剪切为第一个点字符(如果存在)。
private static int getVersion() {
String version = System.getProperty("java.version");
if(version.startsWith("1.")) {
version = version.substring(2, 3);
} else {
int dot = version.indexOf(".");
if(dot != -1) { version = version.substring(0, dot); }
} return Integer.parseInt(version);
}
现在,您可以更加轻松地检查版本:
if(getVersion() < 6) {
// ...
}
double version = 1.6
和Double.parseDouble("1.6")
仍然应该产生相同的位模式,对不对?由于我们不对数字进行算术运算(仅是简单的比较),因此即使==也可以按预期工作。
如何从软件包元信息中获取版本:
String version = Runtime.class.getPackage().getImplementationVersion();
打印出类似以下内容的内容:
1.7.0_13
Runtime.class.getPackage().getSpecificationVersion()
Runtime.class.getPackage().getImplementationVersion()
似乎null
在JDK9 上返回。
Runtime.version()
从Java 9开始,您可以使用Runtime.version()
,它返回一个Runtime.Version
:
Runtime.Version version = Runtime.version();
最简单的方法(java.specification.version):
double version = Double.parseDouble(System.getProperty("java.specification.version"));
if (version == 1.5) {
// 1.5 specific code
} else {
// ...
}
或类似(java.version)的东西:
String[] javaVersionElements = System.getProperty("java.version").split("\\.");
int major = Integer.parseInt(javaVersionElements[1]);
if (major == 5) {
// 1.5 specific code
} else {
// ...
}
或者,如果您想将其全部分解(java.runtime.version):
String discard, major, minor, update, build;
String[] javaVersionElements = System.getProperty("java.runtime.version").split("\\.|_|-b");
discard = javaVersionElements[0];
major = javaVersionElements[1];
minor = javaVersionElements[2];
update = javaVersionElements[3];
build = javaVersionElements[4];
不起作用,需要--pos
评估两次:
String version = System.getProperty("java.version");
System.out.println("version:" + version);
int pos = 0, count = 0;
for (; pos < version.length() && count < 2; pos++) {
if (version.charAt(pos) == '.') {
count++;
}
}
--pos; //EVALUATE double
double dversion = Double.parseDouble(version.substring(0, pos));
System.out.println("dversion:" + dversion);
return dversion;
}
Apache Commons Lang的示例:
import org.apache.commons.lang.SystemUtils;
Float version = SystemUtils.JAVA_VERSION_FLOAT;
if (version < 1.4f) {
// legacy
} else if (SystemUtils.IS_JAVA_1_5) {
// 1.5 specific code
} else if (SystemUtils.isJavaVersionAtLeast(1.6f)) {
// 1.6 compatible code
} else {
// dodgy clause to catch 1.4 :)
}
version < 1.4f
...什么时候发生version = 1.4f
?
version <= 1.4f
..不幸的是,SystemUtils
它没有提供一种isJavaVersionLessThan
方法,但是(幸运的是)您还可以将遗留代码放在一个else
更干净的代码块中。
1.4f
回到传统代码吗?
if (SystemUtils.IS_JAVA_1_5) { /* 1.5 specific code */ } else if (SystemUtils.isJavaVersionAtLeast(1.6f)) { /* modern code */ } else { /* fall back to legacy code */ }
。上面的特定代码,下面的通用代码,最底层的后备代码。
这是JOSM中的实现:
/**
* Returns the Java version as an int value.
* @return the Java version as an int value (8, 9, etc.)
* @since 12130
*/
public static int getJavaVersion() {
String version = System.getProperty("java.version");
if (version.startsWith("1.")) {
version = version.substring(2);
}
// Allow these formats:
// 1.8.0_72-ea
// 9-ea
// 9
// 9.0.1
int dotPos = version.indexOf('.');
int dashPos = version.indexOf('-');
return Integer.parseInt(version.substring(0,
dotPos > -1 ? dotPos : dashPos > -1 ? dashPos : 1));
}
不知道另一种检查方法,但这是: http://java.sun.com/j2se/1.5.0/docs/api/java/lang/System.html#getProperties() “暗示” java.version“是标准的系统属性,因此我希望它能够与其他JVM一起使用。