1

我使用第 3 方 API。根据其规格如下

  byte[] timestamp = new byte[] {185, 253, 177, 161, 51, 1}

表示从 1970 年 1 月 1 日开始生成消息以供传输的毫秒数

问题是我不知道如何将其转换为 DateTime。

我试过了

DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
long milliseconds = BitConverter.ToUInt32(timestamp, 0);
var result =  Epoch + TimeSpan.FromMilliseconds(milliseconds);

结果是 {2/1/1970 12:00:00 AM},但预计是 2012 年。

4

2 回答 2

4
        byte[] timestamp = new byte[] { 185, 253, 177, 161, 51, 1, 0, 0, };
        DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
        ulong milliseconds = BitConverter.ToUInt64(timestamp, 0);
        var result = Epoch + TimeSpan.FromMilliseconds(milliseconds);

结果是 2011 年 11 月 14 日

为 CodeInChaos 添加特殊的填充代码:

    byte[] oldStamp = new byte[] { 185, 253, 177, 161, 51, 1 };
    byte[] newStamp = new byte[sizeof(UInt64)];
    Array.Copy(oldStamp, newStamp, oldStamp.Length);

在大端机器上运行:

if (!BitConverter.IsLittleEndian)
{
    newStamp = newStamp.Reverse().ToArray();
}
于 2012-04-11T14:16:20.113 回答
3

我假设timestamp使用小端格式。我也省略了参数验证。

long GetLongLE(byte[] buffer,int startIndex,int count)
{
  long result=0;
  long multiplier=1;
  for(int i=0;i<count;i++)
  {
    result += buffer[startIndex+i]*multiplier;
    multiplier *= 256;
  }
  return result;
}

long milliseconds = GetLongLE(timestamp, 0, 6);
于 2012-04-11T14:13:08.433 回答