字节到可读格式(字节kbmb等)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字节到可读格式(字节kbmb等)相关的知识,希望对你有一定的参考价值。
this will convert bytes to a readable format with 2 decimal places
public static function readablizeBytes(bytes:uint):String { var s:Array = ['bytes', 'kb', 'MB', 'GB', 'TB', 'PB']; var e:Number = Math.floor( Math.log( bytes ) / Math.log( 1024 ) ); return ( bytes / Math.pow( 1024, Math.floor( e ) ) ).toFixed( 2 ) + " " + s[e]; }
以上是关于字节到可读格式(字节kbmb等)的主要内容,如果未能解决你的问题,请参考以下文章