cn.hutool.system.JavaSpecInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.system;
import java.io.Serializable;
/**
* 代表Java Specification的信息。
*/
public class JavaSpecInfo implements Serializable{
private static final long serialVersionUID = 1L;
private final String JAVA_SPECIFICATION_NAME = SystemUtil.get("java.specification.name", false);
private final String JAVA_SPECIFICATION_VERSION = SystemUtil.get("java.specification.version", false);
private final String JAVA_SPECIFICATION_VENDOR = SystemUtil.get("java.specification.vendor", false);
/**
* 取得当前Java Spec.的名称(取自系统属性:java.specification.name
)。
*
*
* 例如Sun JDK 1.4.2:"Java Platform API Specification"
*
*
* @return 属性值,如果不能取得(因为Java安全限制)或值不存在,则返回null
。
*
*/
public final String getName() {
return JAVA_SPECIFICATION_NAME;
}
/**
* 取得当前Java Spec.的版本(取自系统属性:java.specification.version
)。
*
*
* 例如Sun JDK 1.4.2:"1.4"
*
*
* @return 属性值,如果不能取得(因为Java安全限制)或值不存在,则返回null
。
*
* @since Java 1.3
*/
public final String getVersion() {
return JAVA_SPECIFICATION_VERSION;
}
/**
* 取得当前Java Spec.的厂商(取自系统属性:java.specification.vendor
)。
*
*
* 例如Sun JDK 1.4.2:"Sun Microsystems Inc."
*
*
* @return 属性值,如果不能取得(因为Java安全限制)或值不存在,则返回null
。
*
*/
public final String getVendor() {
return JAVA_SPECIFICATION_VENDOR;
}
/**
* 将Java Specification的信息转换成字符串。
*
* @return JVM spec.的字符串表示
*/
@Override
public final String toString() {
StringBuilder builder = new StringBuilder();
SystemUtil.append(builder, "Java Spec. Name: ", getName());
SystemUtil.append(builder, "Java Spec. Version: ", getVersion());
SystemUtil.append(builder, "Java Spec. Vendor: ", getVendor());
return builder.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy