Skip to content

Instantly share code, notes, and snippets.

@khajavi
Created March 18, 2016 10:35
Show Gist options
  • Save khajavi/8bec39ac19d2127c1d6a to your computer and use it in GitHub Desktop.
Save khajavi/8bec39ac19d2127c1d6a to your computer and use it in GitHub Desktop.
val mb = 1024*1024
val runtime = Runtime.getRuntime
println("** Used Memory: " + (runtime.totalMemory - runtime.freeMemory) / mb)
println("** Free Memory: " + runtime.freeMemory / mb)
println("** Total Memory: " + runtime.totalMemory / mb)
println("** Max Memory: " + runtime.maxMemory / mb)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment