All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.noear.wood.utils.JavaUtils Maven / Gradle / Ivy

There is a newer version: 1.3.14
Show newest version
package org.noear.wood.utils;


/**
 * @author noear 2022/10/15 created
 */
public class JavaUtils {
    public static final int JAVA_MAJOR_VERSION;

    /*
     * 获取 Java 版本号
     * http://openjdk.java.net/jeps/223
     * 1.8.x  = 8
     * 11.x   = 11
     * 17.x   = 17
     */
    static {
        int majorVersion;
        try {
            String version = System.getProperty("java.specification.version");
            if (version.startsWith("1.")) {
                version = version.substring(2);
            }
            majorVersion = Integer.parseInt(version);
        } catch (Throwable ignored) {
            majorVersion = 8;
        }
        JAVA_MAJOR_VERSION = majorVersion;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy