Here you can find the source of reportMemory(double val)
private static String reportMemory(double val)
//package com.java2s; //License from project: Open Source License public class Main { private static String reportMemory(double val) { val /= 1024; return String.format(" %.4f KB | %.4f MB | %.4f GB", val, val / 1024, val / 1024 / 1024); }//from ww w.j a va 2 s . com }