在Java 中將字節大小轉換為人類可讀的格式
問題:
轉換位元組將大小轉換為人類可讀的格式(例如“1 Kb”或“1 Mb”)是常見的要求。與其在每個專案中手動編寫此實用程序,不如探索現有程式庫來實現此類功能。
解決方案:
Apache Commons
Apache Commons 提供了兩種靜態方法用於將位元組大小轉換人類可讀的格式:
實作:
public static String humanReadableByteCountSI(long bytes) { // ... code from Apache Commons } public static String humanReadableByteCountBin(long bytes) { // ... code from Apache Commons }
範例:
System.out.println(humanReadableByteCountSI(1024)); // output: "1.0 kB" System.out.println(humanReadableByteCountBin(1024)); // output: "1.0 KiB"
以上是如何在 Java 中將位元組轉換為人類可讀的格式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!