public class Demo2 {
    public static void main(String[] args) {
        DecimalFormat df = new DecimalFormat("0.00") ;
        //显示JVM总内存
        long totalMem = Runtime.getRuntime().totalMemory();
        //显示JVM尝试使用的最大内存
        long maxMem = Runtime.getRuntime().maxMemory();
        //空闲内存
        long freeMem = Runtime.getRuntime().freeMemory();
    }
}