public static void main(String[] args) { // 得到JVM中的空闲内存量(单位是m) System.out.println(Runtime.getRuntime().freeMemory()/1024/1024); // 的JVM内存总量(单位是m) System.out.println(Runtime.getRuntime().totalMemory()/1024/1024); // JVM试图使用额最大内存量(单位是m) System.out.println(Runtime.getRuntime().maxMemory()/1024/1024); // 可用处理器的数目 System.out.println(Runtime.getRuntime().availableProcessors()); }
可通过接口去查询