Here you can find the source of getSystemFreeMemory()
public static long getSystemFreeMemory()
//package com.java2s; //License from project: Open Source License public class Main { public static long getSystemFreeMemory() { return Runtime.getRuntime().freeMemory(); }/*from w ww .j av a 2 s . co m*/ }