Here you can find the source of getUsedMemoryInMb()
public static double getUsedMemoryInMb()
//package com.java2s; //License from project: Apache License public class Main { final static double MB_Numeral = 1024d * 1024d; public static double getUsedMemoryInMb() { return getTotalMemoryInMb() - getFreeMemoryInMb(); }/*from ww w . jav a 2 s. c om*/ public static double getTotalMemoryInMb() { return Runtime.getRuntime().totalMemory() / MB_Numeral; } public static double getFreeMemoryInMb() { return Runtime.getRuntime().freeMemory() / MB_Numeral; } }