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

top.hmtools.system.SystemInfoTools Maven / Gradle / Ivy

There is a newer version: 0.0.4-beta
Show newest version
package top.hmtools.system;

/**
 * 获取当前系统环境信息的工具类
 * @author HyboJ
 *
 */
public class SystemInfoTools {

	/**
	 * 获取运行时名称
	 * @return
	 */
	public static String getRuntimeName(){
		return System.getProperty("java.runtime.name");
	}
	
	/**
	 * 获取用户当前运行Java程序所在的路径
	 * @return
	 */
	public static String getUserDir(){
		return System.getProperty("user.dir");
	}
	
	/**
	 * 获取用户当前运行Java程序所在的路径
	 * @return
	 */
	public static String getCurrentProjectDir(){
		return getUserDir();
	}
	
	/**
	 * 获取当前操作系统名称
	 * @return
	 */
	public static String getOSName(){
		return System.getProperty("os.name");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy