正在检索存储为MB的值

本文关键字:MB 的值 存储 检索 | 更新日期: 2023-09-27 18:28:07

我有一个表,它将服务器的RAM量存储在biginit列中,值为2470208。

但是,我如何应用数据注释或其他验证来只显示2而不是s470208?

我的意思是总是除以100万,得到数字左边的数字?

正在检索存储为MB的值

1)将其用于自动千单位:

string GetByteString(long n) {
    int k=0;
    string u=" kMGTEP";
    while(n>1024) {
        n>>=10;
        k++;
    }
    return n.ToString() + u[k];
}

呼叫:

string s= GetByteString(1234567890123);
Debug.WriteLine(s);

2) 但如果你总是想要MB,只需移动20:

long n = 123456789;
string MB = (n>>20).ToString();

但如果n低于1MB,则会显示0。

原因:

1 kB = 2^10 = 1<<10 = 1024;  
1 MB = 2^20 = 1<<20 = 1024*1024 = 1048576;  
1 GB = 2^30 = 1<<30 = 1024*1024*1024 = 1073741824;

您标记了C#,但提到了bigint列,因此不清楚您是在寻找数据库还是C#解决方案。下面的C#方法将字节数作为整数,并返回一个格式化的字符串。。。

public string FormattedBytes(long bytes)
{
    string units = " kMGT";
    double logBase = Math.Log((double)bytes, 1024.0);
    double floorBase = Math.Floor(logBase);
    return String.Format("{0:N2}{1}b",
        Math.Pow(1024.0, logBase - floorBase),
        units.Substring((int)floorBase, 1));
}