import java.net.InetAddress; import java.net.NetworkInterface; import java.net.SocketException; import java.net.UnknownHostException; import java.util.Enumeration; import java.util.Properties; import java.util.Set; public class SystemPropertes { public static void main(String[] args) throws SocketException, UnknownHostException { System.out.println("当前使用的JDK安装目录:" + System.getenv("JAVA_HOME")); System.out.println("当前系统属性"); getSystemProperties();//可以利用这些key获取系统信息 Runtime r = Runtime.getRuntime(); System.out.println(""); System.out.print("CPU信息 数量:" + r.availableProcessors() + "\n"); System.out.println("内存:"+r.totalMemory() + " bytes"); System.out.println("当前系统登录的用户名:" + System.getProperty("user.name")); System.out.println("结束当前运行的jvm,运行System.exit(0)"); System.exit(0); } /** * 获取系统属性 */ public static void getSystemProperties() { Properties properties = System.getProperties(); Set<Object> keySet = properties.keySet(); for (Object key : keySet) { System.out.println(key + "------" + properties.get(key)); } } }
最近下载更多
最近浏览更多
851690469 LV1
2023年10月18日
zhezhizhu123 LV1
2022年7月6日
会飞的绿色 LV3
2021年9月1日
歌颂者 LV5
2020年12月27日
dongzhan LV12
2020年12月22日
顾璇武 LV1
2020年5月10日
叶痕秋
2020年3月23日
暂无贡献等级
hmj792001010 LV12
2019年9月27日
1832365711 LV15
2019年9月24日
zoujilain123
2019年8月2日
暂无贡献等级