Java examples for Java Virtual Machine:Utility
Get Free Memory of Java Virtual Machine(JVM)
public class Main { public static void main(String args[]) {// w ww . j a va 2s . com Runtime runtime = Runtime.getRuntime(); long freeMemory = runtime.freeMemory(); System.out.println(freeMemory + " bytes free in JVM"); } }