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:
Post a Comment