Skip to content

Instantly share code, notes, and snippets.

@yung-yu
Created October 26, 2018 03:56
Show Gist options
  • Save yung-yu/d96c49fdea91a4e96623a48e1663e6f4 to your computer and use it in GitHub Desktop.
Save yung-yu/d96c49fdea91a4e96623a48e1663e6f4 to your computer and use it in GitHub Desktop.
public static String readableFileSize(long size) {
if(size <= 0) return "0";
final String[] units = new String[] { "B", "kB", "MB", "GB", "TB" };
int digitGroups = (int) (Math.log10(size)/Math.log10(1024));
return new DecimalFormat("#,##0.#").format(size/Math.pow(1024, digitGroups)) + " " + units[digitGroups];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment