Tuesday, April 29, 2008

How to get free available memory in Java program

This sample code will print the total and free memory at runtime to the console.

public class MemoryExp {

public static void main(String[] args) {

System.out.println("Total Memory"+Runtime.getRuntime().totalMemory());
System.out.println("Free Memory"+Runtime.getRuntime().freeMemory());

}
}

For more details: Java Tips

No comments: