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