字节到可读格式(字节kbmb等)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字节到可读格式(字节kbmb等)相关的知识,希望对你有一定的参考价值。

this will convert bytes to a readable format with 2 decimal places
  1. public static function readablizeBytes(bytes:uint):String
  2. {
  3. var s:Array = ['bytes', 'kb', 'MB', 'GB', 'TB', 'PB'];
  4. var e:Number = Math.floor( Math.log( bytes ) / Math.log( 1024 ) );
  5. return ( bytes / Math.pow( 1024, Math.floor( e ) ) ).toFixed( 2 ) + " " + s[e];
  6. }

以上是关于字节到可读格式(字节kbmb等)的主要内容,如果未能解决你的问题,请参考以下文章

什么是位字节字KBMB

什么是位字节字KBMB?

在Java中将字节大小转换为人类可读的格式?

将NV21字节数组转换为位图可读格式[重复]

PE格式自检

Java - 将人类可读大小转换为字节