public String size(int size){
String hrSize = "";
int k = size;
double m = size/1024;
double g = size/1048576;
double t = size/1073741824;
DecimalFormat dec = new DecimalFormat("0.00");
if (k>0)
{
hrSize = dec.format(k).concat("KB");
}
if (m>0)
{
hrSize = dec.format(m).concat("MB");
}
if (g>0)
{
hrSize = dec.format(g).concat("GB");
}
if (t>0)
{
hrSize = dec.format(t).concat("TB");
}
return hrSize;
}
これは、サイズをGB、MB、KB、またはTBで返すメソッドです。入力値はKBです。たとえば、1245の結果は1.21MBのようになりますが、得られるのは1.00MBです。
integer division
を実行しています。したがって、除算の結果もinteger
になります。また、小数部分は切り捨てられます。
so, 1245 / 1024 = 1
部門をfloating point division
に変更します:-
double m = size/1024.0;
double g = size/1048576.0;
double t = size/1073741824.0;
また、比較に誤りがあります。 1
との比較を行う必要があります。
if (m > 1), if (t > 1), if (g > 1)
理想的には、比較を次のように変更します:-
if (t > 1) {
hrSize = dec.format(t).concat("TB");
} else if (g > 1) {
hrSize = dec.format(g).concat("GB");
} else if (m > 1) {
hrSize = dec.format(m).concat("MB");
} else {
hrSize = dec.format(size).concat("KB");
}
最初に上位のユニットと比較してから、下位のユニットに移動する必要があります。
修正バージョン。 formatを1回だけ呼び出します。 「バイト」を含みます。
public static String formatFileSize(long size) {
String hrSize = null;
double b = size;
double k = size/1024.0;
double m = ((size/1024.0)/1024.0);
double g = (((size/1024.0)/1024.0)/1024.0);
double t = ((((size/1024.0)/1024.0)/1024.0)/1024.0);
DecimalFormat dec = new DecimalFormat("0.00");
if ( t>1 ) {
hrSize = dec.format(t).concat(" TB");
} else if ( g>1 ) {
hrSize = dec.format(g).concat(" GB");
} else if ( m>1 ) {
hrSize = dec.format(m).concat(" MB");
} else if ( k>1 ) {
hrSize = dec.format(k).concat(" KB");
} else {
hrSize = dec.format(b).concat(" Bytes");
}
return hrSize;
}
これ大好き:
public static String getDynamicSpace(long diskSpaceUsed)
{
if (diskSpaceUsed <= 0) {
return "0";
}
final String[] units = new String[] { "B", "KiB", "MiB", "GiB", "TiB" };
int digitGroups = (int) (Math.log10(diskSpaceUsed) / Math.log10(1024));
return new DecimalFormat("#,##0.#").format(diskSpaceUsed / Math.pow(1024, digitGroups))
+ " " + units[digitGroups];
}
問題は、整数除算を使用していることです。コードを次のように変更します。
double m = size/1024.0;
double g = size/1048576.0;
double t = size/1073741824.0;
元のコードでは、double m = size/1024
は整数size
を1024
で除算し、結果を整数に切り捨ててから、double
に変換します。これが、端数部分が失われた理由です。
それを正しくするのは簡単ではありません。 Rohit Jainは整数演算について言及しました。また、常に切り捨てることは望ましくない場合があるため、丸めも問題になることがあります。 triava ライブラリのような利用可能なソリューションを探すことをお勧めします。
3つの異なるシステム(SI、IEC、JEDEC)とさまざまな出力オプションで、任意の精度で数値をフォーマットできます。 triava単体テスト からのコード例を以下に示します。
UnitFormatter.formatAsUnit(1126, UnitSystem.SI, "B");
// = "1.13kB"
UnitFormatter.formatAsUnit(2094, UnitSystem.IEC, "B");
// = "2.04KiB"
正確なキロ、メガ値の印刷(ここではW =ワット):
UnitFormatter.formatAsUnits(12_000_678, UnitSystem.SI, "W", ", ");
// = "12MW, 678W"
DecimalFormatを渡して出力をカスタマイズできます。
UnitFormatter.formatAsUnit(2085, UnitSystem.IEC, "B", new DecimalFormat("0.0000"));
// = "2.0361KiB"
キロ値またはメガ値に対する任意の操作の場合、それらをコンポーネントに分割できます。
UnitComponent uc = new UnitComponent(123_345_567_789L, UnitSystem.SI);
int kilos = uc.kilo(); // 567
int gigas = uc.giga(); // 123
あなたは整数除算を行っています、
つまり、31/15は2ではなく2になります。
数値にD
またはd
を追加するだけで、それがdoubleであることを示します。
double m = size/1024D;
double g = size/1048576D;
double t = size/1073741824D;
String[] fileSizeUnits = {"bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"};
public String calculateProperFileSize(double bytes){
String sizeToReturn = "";// = FileUtils.byteCountToDisplaySize(bytes), unit = "";
int index = 0;
for(index = 0; index < fileSizeUnits.length; index++){
if(bytes < 1024){
break;
}
bytes = bytes / 1024;
}
System.out.println("Systematic file size: " + bytes + " " + fileSizeUnits[index]);
sizeToReturn = String.valueOf(bytes) + " " + fileSizeUnits[index];
return sizeToReturn;
}
ファイルユニットを追加するだけで(不足している場合)、そのユニットまでのユニットサイズが表示されます(ファイルにその長さがある場合)
class ConverterUtils{
public static void main(String[] args) {
System.out.println(getSize(1234567));
}
public static String getSize(long size) {
String s = "";
double kb = size / 1024;
double mb = kb / 1024;
double gb = mb / 1024;
double tb = gb / 1024;
if(size < 1024L) {
s = size + " Bytes";
} else if(size >= 1024 && size < (1024L * 1024)) {
s = String.format("%.2f", kb) + " KB";
} else if(size >= (1024L * 1024) && size < (1024L * 1024 * 1024)) {
s = String.format("%.2f", mb) + " MB";
} else if(size >= (1024L * 1024 * 1024) && size < (1024L * 1024 * 1024 * 1024)) {
s = String.format("%.2f", gb) + " GB";
} else if(size >= (1024L * 1024 * 1024 * 1024)) {
s = String.format("%.2f", tb) + " TB";
}
return s;
}
}
よりよく理解するために- https://www.techspot.com/news/68482-quickly-convert-between-storage-size-units-kb-mb.html
bickster's answer は問題なく機能しますが、45.00 Bytes
や12.00 KB
などの結果を返すという問題があります。私の意見では、最後の10進数はゼロの場合は削除する必要があります。したがって、45.00 Bytes
と12.00 KB
の代わりに、45 B
と12 KB
を取得します(Bytes
がB
に変更されていることに注意してください。これはキロバイト、メガバイトなどではなく、KB、MBなどがあるため、統一のためです。
private boolean isDouble(double value) {
if (value % 1 == 0) {
Log.d(TAG, "value is " + value + " and is not double");
return false;
} else {
Log.d(TAG, "value is " + value + " and is double");
return true;
}
}
上記の方法では、値に10進数としてゼロが含まれているかどうかを確認します。
private String formatFileSize(long size) {
String hrSize = null;
double b = size;
double k = size/1024.0;
double m = ((size/1024.0)/1024.0);
double g = (((size/1024.0)/1024.0)/1024.0);
double t = ((((size/1024.0)/1024.0)/1024.0)/1024.0);
DecimalFormat dec1 = new DecimalFormat("0.00");
DecimalFormat dec2 = new DecimalFormat("0");
if (t>1) {
hrSize = isDouble(t) ? dec1.format(t).concat(" TB") : dec2.format(t).concat(" TB");
} else if (g>1) {
hrSize = isDouble(g) ? dec1.format(g).concat(" GB") : dec2.format(g).concat(" GB");
} else if (m>1) {
hrSize = isDouble(m) ? dec1.format(m).concat(" MB") : dec2.format(m).concat(" MB");
} else if (k>1) {
hrSize = isDouble(k) ? dec1.format(k).concat(" KB") : dec2.format(k).concat(" KB");
} else {
hrSize = isDouble(b) ? dec1.format(b).concat(" B") : dec2.format(b).concat(" B");
}
return hrSize;
}
私の基本的なバージョン(常にPOWを計算するのではなく、いくつかの定数を定義できます):
public static String GetFolderSizeHuman(long aBytes)
{
if (aBytes < 1024 * 1024)
return aBytes + " KB";
else if (aBytes < Math.pow(2, 20) * 1024)
return (int) aBytes / Math.pow(2, 20) + " MB";
else if (aBytes < Math.pow(2, 30) * 1024 )
return kGbTbFormatter.format(aBytes / Math.pow(2, 30)) + " GB";
else if (aBytes < Math.pow(2, 40) * 1024)
return kGbTbFormatter.format(aBytes / Math.pow(2, 40)) + " TB";
else return "N/A (1TB?)";
}