Skip to content

Instantly share code, notes, and snippets.

@c9n
Created December 8, 2015 09:40
Show Gist options
  • Save c9n/72e7e9b11844c1c8d973 to your computer and use it in GitHub Desktop.
Save c9n/72e7e9b11844c1c8d973 to your computer and use it in GitHub Desktop.
Java - Get max heap size
// javac Test.java
// java -Xmx512m Test
public class Test {
public static void main(String[] args) {
System.out.println("----------");
long max = Runtime.getRuntime().maxMemory();
System.out.println(max/1024/1024 + "M");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment