Skip to content

Instantly share code, notes, and snippets.

@litil
Created February 21, 2014 10:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save litil/9132192 to your computer and use it in GitHub Desktop.
Save litil/9132192 to your computer and use it in GitHub Desktop.
Calculate the size of a file and return it in a readable format
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