Created
November 16, 2011 16:04
-
-
Save markuswustenberg/1370480 to your computer and use it in GitHub Desktop.
Format bytes in human readable format (from http://stackoverflow.com/questions/3758606/how-to-convert-byte-size-into-human-readable-format-in-java)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static String humanReadableByteCount(long bytes, boolean si) { | |
int unit = si ? 1000 : 1024; | |
if (bytes < unit) return bytes + " B"; | |
int exp = (int) (Math.log(bytes) / Math.log(unit)); | |
String pre = (si ? "kMGTPE" : "KMGTPE").charAt(exp-1) + (si ? "" : "i"); | |
return String.format("%.1f %sB", bytes / Math.pow(unit, exp), pre); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment