バイト単位のサイズをJavaScriptでKB、MB、GBに変換する正しい方法


258

私が得たこのコードを PHP経由でバイト単位の秘密の大きさに。

次に、JavaScriptを使用して、これらのサイズを人間が読めるサイズに変換したいと思います。このコードを次のようなJavaScriptに変換しようとしました。

function formatSizeUnits(bytes){
  if      (bytes >= 1073741824) { bytes = (bytes / 1073741824).toFixed(2) + " GB"; }
  else if (bytes >= 1048576)    { bytes = (bytes / 1048576).toFixed(2) + " MB"; }
  else if (bytes >= 1024)       { bytes = (bytes / 1024).toFixed(2) + " KB"; }
  else if (bytes > 1)           { bytes = bytes + " bytes"; }
  else if (bytes == 1)          { bytes = bytes + " byte"; }
  else                          { bytes = "0 bytes"; }
  return bytes;
}

これは正しい方法ですか?もっと簡単な方法はありますか?


5
これは実際にはGiB、MiB、およびKiBに変換されます。これはファイルサイズの標準ですが、常にデバイスサイズではありません。
David Schwartz

回答:


761

これから:(ソース

function bytesToSize(bytes) {
   var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
   if (bytes == 0) return '0 Byte';
   var i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024)));
   return Math.round(bytes / Math.pow(1024, i), 2) + ' ' + sizes[i];
}

注:これは元のコードです。以下の修正バージョンを使用してください。Aliceljmがコピーしたコードをアクティブにしない


現在、修正バージョンはミニファイされておらず、ES6化されています:(コミュニティによる)

function formatBytes(bytes, decimals = 2) {
    if (bytes === 0) return '0 Bytes';

    const k = 1024;
    const dm = decimals < 0 ? 0 : decimals;
    const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];

    const i = Math.floor(Math.log(bytes) / Math.log(k));

    return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i];
}

修正バージョン: (Stackoverflowのコミュニティによる+ JSCompressによる圧縮

function formatBytes(a,b=2){if(0===a)return"0 Bytes";const c=0>b?0:b,d=Math.floor(Math.log(a)/Math.log(1024));return parseFloat((a/Math.pow(1024,d)).toFixed(c))+" "+["Bytes","KB","MB","GB","TB","PB","EB","ZB","YB"][d]}

使用法 :

// formatBytes(bytes,decimals)

formatBytes(1024);       // 1 KB
formatBytes('1024');     // 1 KB
formatBytes(1234);       // 1.21 KB
formatBytes(1234, 3);    // 1.205 KB

デモ/ソース:

function formatBytes(bytes, decimals = 2) {
    if (bytes === 0) return '0 Bytes';

    const k = 1024;
    const dm = decimals < 0 ? 0 : decimals;
    const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];

    const i = Math.floor(Math.log(bytes) / Math.log(k));

    return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i];
}

// ** Demo code **
var p = document.querySelector('p'),
    input = document.querySelector('input');
    
function setText(v){
    p.innerHTML = formatBytes(v);
}
// bind 'input' event
input.addEventListener('input', function(){ 
    setText( this.value )
})
// set initial text
setText(input.value);
<input type="text" value="1000">
<p></p>

PS:変更k = 1000またはsizes = ["..."]必要に応じて(ビットまたはバイト


8
(1)バイト= 0が「n / a」である理由 「0B」だけじゃないですか?(2)Math.roundには精度パラメーターがありません。私はもっ​​と使いたい(bytes / Math.pow(1024, i)).toPrecision(3)
2013

4
toFixed(n)toPrecision(n)すべての値に対して一貫した精度を持つよりもおそらく適切です。また、末尾のゼロ(例:)を回避するために、bytesToSize(1000) // return "1.00 KB"を使用できますparseFloat(x)。最後の行を次のように置き換えることをお勧めしますreturn parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];。以前の変更での結果は次のとおりです: bytesToSize(1000) // return "1 KB"/ bytesToSize(1100) // return "1.1 KB"/ bytesToSize(1110) // return "1.11 KB/ bytesToSize(1111) // also return "1.11 KB"
MathieuLescure

3
0には複数形が使用されていると思います。「0 Bytes」
nima

14
minifyはいいと思いますが、stackexchangeの回答では、より詳細で読みやすいコードを使用することをお勧めします。
ドンキホーテ2017年

2
KB = SI単位のケルビンバイト。これは無意味です。kBである必要があります。
ブレナンT

47
function formatBytes(bytes) {
    var marker = 1024; // Change to 1000 if required
    var decimal = 3; // Change as required
    var kiloBytes = marker; // One Kilobyte is 1024 bytes
    var megaBytes = marker * marker; // One MB is 1024 KB
    var gigaBytes = marker * marker * marker; // One GB is 1024 MB
    var teraBytes = marker * marker * marker * marker; // One TB is 1024 GB

    // return bytes if less than a KB
    if(bytes < kiloBytes) return bytes + " Bytes";
    // return KB if less than a MB
    else if(bytes < megaBytes) return(bytes / kiloBytes).toFixed(decimal) + " KB";
    // return MB if less than a GB
    else if(bytes < gigaBytes) return(bytes / megaBytes).toFixed(decimal) + " MB";
    // return GB if less than a TB
    else return(bytes / gigaBytes).toFixed(decimal) + " GB";
}

34
const units = ['bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];

function niceBytes(x){

  let l = 0, n = parseInt(x, 10) || 0;

  while(n >= 1024 && ++l){
      n = n/1024;
  }
  //include a decimal point and a tenths-place digit if presenting 
  //less than ten of KB or greater units
  return(n.toFixed(n < 10 && l > 0 ? 1 : 0) + ' ' + units[l]);
}

結果:

niceBytes(435)                 // 435 bytes
niceBytes(3398)                // 3.3 KB
niceBytes(490398)              // 479 KB
niceBytes(6544528)             // 6.2 MB
niceBytes(23483023)            // 22 MB
niceBytes(3984578493)          // 3.7 GB
niceBytes(30498505889)         // 28 GB
niceBytes(9485039485039445)    // 8.4 PB

15

filesizejsライブラリを使用できます。


1024バイトは1 KBであり、1000バイトではないため、このライブラリは正確な表現を提供すると思います(他のいくつかのソリューションで提供されているように)。ありがとう@maurocchi
WM

3
@WMそのステートメントは真実ではありません。1kB = 1000バイト。キビバイトには10​​24バイトあります。過去には混乱があったため、これら2つの用語はサイズの違いを正確に説明しています。
ブレナンT

2
@BrennanT年齢によって異なります。以前は1KBが1024バイトでしたが、特定の年齢以上のほとんどの人は、それをそのままと見なしています。
kojow7

14

バイトに関連するサイズを表す実際の方法は2つあり、SI単位(10 ^ 3)またはIEC単位(2 ^ 10)です。JEDECもありますが、その方法はあいまいで混乱します。他の例には、キロバイトを表すためにkBではなくKBを使用するなどのエラーがあることに気づいたので、現在受け入れられている測定単位の範囲を使用してこれらの各ケースを解決する関数を作成することにしました。

最後に書式設定ビットがあり、数値が少しよく見えるようになります(少なくとも私の目では)、目的に合わない場合は、その書式設定を自由に削除してください。

楽しい。

// pBytes: the size in bytes to be converted.
// pUnits: 'si'|'iec' si units means the order of magnitude is 10^3, iec uses 2^10

function prettyNumber(pBytes, pUnits) {
    // Handle some special cases
    if(pBytes == 0) return '0 Bytes';
    if(pBytes == 1) return '1 Byte';
    if(pBytes == -1) return '-1 Byte';

    var bytes = Math.abs(pBytes)
    if(pUnits && pUnits.toLowerCase() && pUnits.toLowerCase() == 'si') {
        // SI units use the Metric representation based on 10^3 as a order of magnitude
        var orderOfMagnitude = Math.pow(10, 3);
        var abbreviations = ['Bytes', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
    } else {
        // IEC units use 2^10 as an order of magnitude
        var orderOfMagnitude = Math.pow(2, 10);
        var abbreviations = ['Bytes', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB'];
    }
    var i = Math.floor(Math.log(bytes) / Math.log(orderOfMagnitude));
    var result = (bytes / Math.pow(orderOfMagnitude, i));

    // This will get the sign right
    if(pBytes < 0) {
        result *= -1;
    }

    // This bit here is purely for show. it drops the percision on numbers greater than 100 before the units.
    // it also always shows the full number of bytes if bytes is the unit.
    if(result >= 99.995 || i==0) {
        return result.toFixed(0) + ' ' + abbreviations[i];
    } else {
        return result.toFixed(2) + ' ' + abbreviations[i];
    }
}

13

ここにワンライナーがあります:

val => ['Bytes','Kb','Mb','Gb','Tb'][Math.floor(Math.log2(val)/10)]

あるいは:

val => 'BKMGT'[~~(Math.log2(val)/10)]


いいですね、でも1kが1000ではなく1024なら?
l2aelba 2017

2
この計算で、1kを2 ^ 10として、1mを2 ^ 20として扱います。1kを1000にしたい場合は、log10を使用するように少し変更できます。
iDaN5x 2017

1
ここではバージョンだという扱い1K 1000:val => 'BKMGT'[~~(Math.log10(val)/3)]
iDaN5x

1
これはいいね!私は、関数から望んでいた完全な文字列を返すために、この上に展開:i = ~~(Math.log2(b)/10); return (b/Math.pow(1024,i)).toFixed(2) + ("KMGTPEZY"[i-1]||"") + "B"
v0rtex

4

ビット演算を使用する方が良い解決策です。これを試して

function formatSizeUnits(bytes)
{
    if ( ( bytes >> 30 ) & 0x3FF )
        bytes = ( bytes >>> 30 ) + '.' + ( bytes & (3*0x3FF )) + 'GB' ;
    else if ( ( bytes >> 20 ) & 0x3FF )
        bytes = ( bytes >>> 20 ) + '.' + ( bytes & (2*0x3FF ) ) + 'MB' ;
    else if ( ( bytes >> 10 ) & 0x3FF )
        bytes = ( bytes >>> 10 ) + '.' + ( bytes & (0x3FF ) ) + 'KB' ;
    else if ( ( bytes >> 1 ) & 0x3FF )
        bytes = ( bytes >>> 1 ) + 'Bytes' ;
    else
        bytes = bytes + 'Byte' ;
    return bytes ;
}

1
残りのバイトを取得します。それは小数部分を提供します。
バズ・ライトイヤー、2013

1
その1024。100が必要な場合は、それに応じてビットをシフトします。
バズ・ライトイヤー、2013


3
コードを理解したり、少なくともテストしたりせずに、インターネットからコードを取得しないでください。これは単に間違っているコードの良い例です。3(返します「1Bytes」)または400000、それを渡すことによって、それを実行してみてください
アミールHaghighat

10
Amir Haghighat様これは私だけが書いた基本的なコードです。32ビットの整数値のjavasriptポストでは、整数は4バイトしかないため、コードは機能しません。これらは、知っておくべき基本的なプログラミング情報です。Stackoverflowは、スプーンによる給餌ではなく、人を導くことのみを目的としています。
バズライトイヤー2013年

4

Aliceljmの答えによると、10進数の後に0を削除しました。

function formatBytes(bytes, decimals) {
    if(bytes== 0)
    {
        return "0 Byte";
    }
    var k = 1024; //Or 1 kilo = 1000
    var sizes = ["Bytes", "KB", "MB", "GB", "TB", "PB"];
    var i = Math.floor(Math.log(bytes) / Math.log(k));
    return parseFloat((bytes / Math.pow(k, i)).toFixed(decimals)) + " " + sizes[i];
}

2

私が取り組んでいたファイルアップロードプロジェクトに@Aliceljmの回答を最初に使用しましたが、最近、ファイルが0.98kbとして読み取られているという問題に遭遇しました1.02mb。これが私が現在使用している更新されたコードです。

function formatBytes(bytes){
  var kb = 1024;
  var ndx = Math.floor( Math.log(bytes) / Math.log(kb) );
  var fileSizeTypes = ["bytes", "kb", "mb", "gb", "tb", "pb", "eb", "zb", "yb"];

  return {
    size: +(bytes / kb / kb).toFixed(2),
    type: fileSizeTypes[ndx]
  };
}

上記のようにファイルが追加された後に呼び出されます

// In this case `file.size` equals `26060275` 
formatBytes(file.size);
// returns `{ size: 24.85, type: "mb" }`

確かに、Windowsはファイルをあるものとして読み取りますが24.8mb、私は余分な精度で問題ありません。


2

このソリューションは以前のソリューションに基づいていますが、メトリックとバイナリの両方の単位を考慮しています。

function formatBytes(bytes, decimals, binaryUnits) {
    if(bytes == 0) {
        return '0 Bytes';
    }
    var unitMultiple = (binaryUnits) ? 1024 : 1000; 
    var unitNames = (unitMultiple === 1024) ? // 1000 bytes in 1 Kilobyte (KB) or 1024 bytes for the binary version (KiB)
        ['Bytes', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB']: 
        ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
    var unitChanges = Math.floor(Math.log(bytes) / Math.log(unitMultiple));
    return parseFloat((bytes / Math.pow(unitMultiple, unitChanges)).toFixed(decimals || 0)) + ' ' + unitNames[unitChanges];
}

例:

formatBytes(293489203947847, 1);    // 293.5 TB
formatBytes(1234, 0);   // 1 KB
formatBytes(4534634523453678343456, 2); // 4.53 ZB
formatBytes(4534634523453678343456, 2, true));  // 3.84 ZiB
formatBytes(4566744, 1);    // 4.6 MB
formatBytes(534, 0);    // 534 Bytes
formatBytes(273403407, 0);  // 273 MB

2

function bytesToSize(bytes) {
  var sizes = ['B', 'K', 'M', 'G', 'T', 'P'];
  for (var i = 0; i < sizes.length; i++) {
    if (bytes <= 1024) {
      return bytes + ' ' + sizes[i];
    } else {
      bytes = parseFloat(bytes / 1024).toFixed(2)
    }
  }
  return bytes + ' P';
}

console.log(bytesToSize(234));
console.log(bytesToSize(2043));
console.log(bytesToSize(20433242));
console.log(bytesToSize(2043324243));
console.log(bytesToSize(2043324268233));
console.log(bytesToSize(2043324268233343));


2

var SIZES = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];

function formatBytes(bytes, decimals) {
  for(var i = 0, r = bytes, b = 1024; r > b; i++) r /= b;
  return `${parseFloat(r.toFixed(decimals))} ${SIZES[i]}`;
}


1

ここで@Aliceljmの回答を更新しています。1、2桁の数値では小数点以下の桁数が重要であるため、小数点以下第1位を四捨五入して、小数点以下第1位のままにします。3桁の数値の場合、私は単位の位を四捨五入し、小数点以下の桁数をすべて無視しています。

getMultiplers : function(bytes){
    var unit = 1000 ;
    if (bytes < unit) return bytes ;
    var exp = Math.floor(Math.log(bytes) / Math.log(unit));
    var pre = "kMGTPE".charAt(exp-1);
    var result = bytes / Math.pow(unit, exp);
    if(result/100 < 1)
        return (Math.round( result * 10 ) / 10) +pre;
    else
        return Math.round(result) + pre;
}

0

これは、バイトを人間に表示する方法です。

function bytesToHuman(bytes, decimals = 2) {
  // https://en.wikipedia.org/wiki/Orders_of_magnitude_(data)
  const units = ["bytes", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB"]; // etc

  let i = 0;
  let h = 0;

  let c = 1 / 1023; // change it to 1024 and see the diff

  for (; h < c && i < units.length; i++) {
    if ((h = Math.pow(1024, i) / bytes) >= c) {
      break;
    }
  }

  // remove toFixed and let `locale` controls formatting
  return (1 / h).toFixed(decimals).toLocaleString() + " " + units[i];
}

// test
for (let i = 0; i < 9; i++) {
  let val = i * Math.pow(10, i);
  console.log(val.toLocaleString() + " bytes is the same as " + bytesToHuman(val));

}

// let's fool around
console.log(bytesToHuman(1023));
console.log(bytesToHuman(1024));
console.log(bytesToHuman(1025));

0

私は私の意見を共有したかっただけです。私はこの問題を抱えていたので、私の解決策はこれです。これは、より低い単位をより高い単位に変換し、その逆も、引数を指定してtoUnitfromUnit

export function fileSizeConverter(size: number, fromUnit: string, toUnit: string ): number | string {
  const units: string[] = ['B', 'KB', 'MB', 'GB', 'TB'];
  const from = units.indexOf(fromUnit.toUpperCase());
  const to = units.indexOf(toUnit.toUpperCase());
  const BASE_SIZE = 1024;
  let result: number | string = 0;

  if (from < 0 || to < 0 ) { return result = 'Error: Incorrect units'; }

  result = from < to ? size / (BASE_SIZE ** to) : size * (BASE_SIZE ** from);

  return result.toFixed(2);
}

私はここからアイデアを得ました


0
function bytes2Size(byteVal){
    var units=["Bytes", "KB", "MB", "GB", "TB"];
    var kounter=0;
    var kb= 1024;
    var div=byteVal/1;
    while(div>=kb){
        kounter++;
        div= div/kb;
    }
    return div.toFixed(1) + " " + units[kounter];
}

この機能は理解しやすく、理解しやすく、任意の言語で実装できます。これは、1
kbを

簡単に言うと、バイナリプレフィックスには違いがあります。SIベース10ルールに従うものと、ベース2に従うものがあります。詳しくは、こちらをご覧ください。ただし、kを1024と見なす場合、除算ではなく、のようなシフト演算子を使用できますbyteVal >> 10。また、1で除算するのではなく、実数を整数キャストするのに使用Math.trunc()することをお勧めします
狡猾な

回答としてコードだけを投稿するのではなく、コードが何をするか、それが質問の問題をどのように解決するかについての説明も提供してください。説明付きの回答は通常、質が高く、賛成票を集める可能性が高くなります。
Mark Rotteveel

-7

この簡単な回避策を試してください。

var files = $("#file").get(0).files;               
                var size = files[0].size;
                if (size >= 5000000) {
alert("File size is greater than or equal to 5 MB");
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.