Here you can find the source of getTotalMemory()
public static long getTotalMemory()
//package com.java2s; //License from project: Apache License public class Main { /**// w w w .j av a2 s . c o m * Gets current size of heap in bytes */ public static long getTotalMemory() { return Runtime.getRuntime().totalMemory(); } }