Here you can find the source of memoryAllocated()
public static int memoryAllocated()
//package com.java2s; //License from project: Open Source License public class Main { public static int memoryAllocated() { Runtime runtime = Runtime.getRuntime(); return Math.round(runtime.totalMemory() / 1024f); }//from ww w . j a v a 2 s .c o m }