Here you can find the source of calcUsedMemorySize()
public static final long calcUsedMemorySize()
//package com.java2s; //License from project: Open Source License public class Main { /**/* www .j a v a 2 s . c o m*/ * calculate used memory size. * @return used memory size (long) */ public static final long calcUsedMemorySize() { return Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory(); } }