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

com.dingtalk.open.app.api.util.JavaVersionUtil Maven / Gradle / Ivy

There is a newer version: 1.3.7
Show newest version
package com.dingtalk.open.app.api.util;

/**
 * @author feiyin
 * @date 2024/3/15
 */
public class JavaVersionUtil {


    public static Integer getMainVersion() {
        String getVersion = System.getProperty("java.version");
        String[] version = getVersion.split("\\.");
        if (version[0].equalsIgnoreCase("1")) {
            return Integer.parseInt(version[1]);
        } else {
            return Integer.parseInt(version[0]);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy