Here you can find the source of ReadableByteCount(long bytes)
public static String ReadableByteCount(long bytes)
//package com.java2s; public class Main { public static String ReadableByteCount(long bytes) { int unit = 1024; if (bytes < unit) return bytes + " B"; int exp = (int) (Math.log(bytes) / Math.log(unit)); String pre = String.valueOf("KMGTPE".charAt(exp - 1)); return String.format("%.1f %sB", bytes / Math.pow(unit, exp), pre); }/* w w w .j a va2 s . com*/ }