// print sizes in human readable format (e.g., 1K 23M 4G)
public static String fileSizeToString(File file) {
String size;
DecimalFormat df = new DecimalFormat("#.##");
if (file.exists()) {
double bytes = file.length();
/*
double kilobytes = (bytes / 1024);
double megabytes = (kilobytes / 1024);
double gigabytes = (megabytes / 1024);
double terabytes = (gigabytes / 1024);
double petabytes = (terabytes / 1024);
double exabytes = (petabytes / 1024);
double zettabytes = (exabytes / 1024);
double yottabytes = (zettabytes / 1024);
*/
if (bytes < 1024) {
size = df.format(bytes) + "B";
} else if (bytes < 1024 * 1024) {
size = df.format(bytes / 1024) + "K";
} else if (bytes < 1024 * 1024 * 1024) {
size = df.format(bytes / 1024 / 1024) + "M";
} else if (bytes < 1024 * 1024 * 1024 * 1024) {
size = df.format(bytes / 1024 / 1024 / 1024) + "G";
} else if (bytes < 1024 * 1024 * 1024 * 1024 * 1024) {
size = df.format(bytes / 1024 / 1024 / 1024 / 1024) + "T";
} else if (bytes < 1024 * 1024 * 1024 * 1024 * 1024 * 1024) {
size = df.format(bytes / 1024 / 1024 / 1024 / 1024 / 1024) + "P";
} else {
size = "huge";
}
} else {
size = "error";
Log.e(TAG, file.getName() + " can not be found");
}
return size;
}
Android 代碼轉化文件大小為人類易懂的格式
最后編輯于 :
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
- 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
- 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發上,一...
- 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側響起,我...