4

我在将存储浏览器历史记录的文件中的日期转换为正常的 DateTime 时遇到了一些问题。

该文件位于:C:\Users[username]\AppData\Roaming\Mozilla\Firefox\Profiles[profilename]\places.sqlite

有问题的表是:[moz_places]

该列是:[last_visit_date]


我尝试过使用 unix epoch 和 webkit 格式(如 chrome 使用),但都没有给我预期的结果。

这是我的 Unix 转换(不工作):

    public static DateTime FromUnixTime(long unixTime)
    {
        var epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
        return epoch.AddSeconds(unixTime);
    }

这是我的 webkit 转换代码:(也不适用于这些日期,它适用于 chromes webkit 日期)

    public static DateTime ConvertWebkitTimeToDateTime(long ticks)
    {
        //Set up a date at the traditional starting point for unix time.
        DateTime normalDate = new DateTime(1970, 1, 1, 0, 0, 0, 0);
        //Subtract the amount of seconds from 1601 to 1970.
        long convertedTime = (ticks - 11644473600000000);
        //Devide by 1000000 to convert the remaining time to seconds.
        convertedTime = convertedTime / 1000000;
        //Add the seconds we calculated above.
        normalDate = normalDate.AddSeconds(convertedTime);
        //Finally we have the date.
        return normalDate;
    }

那么 Firefox 存储的这些日期是怎么回事呢?这里有几个示例日期,应该都在今天或昨天。(大约 2013 年 10 月 17 日)

1373306583389000

1373306587125000

1373306700392000

任何帮助或文档链接都会很棒,谢谢。

4

2 回答 2

8

Unix 时间戳以秒为单位。这些值大了一百万倍,即它们使用微秒:

> select datetime(1373306583389000 / 1000000, 'unixepoch');
2013-07-08 18:03:03
于 2013-10-17T14:52:48.347 回答
4

C#中的解决方案:

    public static DateTime FromUnixTime(long unixTime)
    {
        unixTime = unixTime / 1000000;
        var epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
        return epoch.AddSeconds(unixTime);
    }

CL。是正确的,因为这只是 Unix 纪元的毫秒值。

SQL中的解决方案:

这是一个更详细地解释他的解决方案的资源:

https://support.mozilla.org/en-US/questions/835204

于 2013-10-17T15:08:20.043 回答