提升解析日期/时间字符串并生成与.NET兼容的Ticks值

时间:2012-03-25 21:42:08

标签: c++ .net datetime boost

我想使用C ++ / Boost来解析时间字符串,例如1980.12.06 21:12:04.232,并获取一个与tick计数相对应的ticks值(用于初始化.NET的System.DateTime )。我该怎么办?

更新:需要使用C ++;我不能使用C ++ / CLI。

2 个答案:

答案 0 :(得分:5)

  • in .Net日期时间从01.01.01 00:00:00
  • 开始
  • in boost ptime从1400.01.01 00.00.00
  • 开始

// c ++ code

#include <boost/date_time/posix_time/posix_time.hpp>
int main(int argc, char* argv[])
{
    using namespace boost::posix_time;
    using namespace boost::gregorian;

    //C# offset till 1400.01.01 00:00:00
    uint64_t netEpochOffset = 441481536000000000LL;

    ptime ptimeEpoch(date(1400,1,1), time_duration(0,0,0));

    //note: using different format than yours, you'll need to parse the time in a different way
    ptime time = from_iso_string("19801206T211204,232");

    time_duration td = time - netEpoch;
    uint64_t nano = td.total_microseconds() * 10LL;

    std::cout <<"net ticks = " <<nano + netEpochOffset;

    return 0;
}

//输出624805819242320000

在c#中测试

static void Main(string[] args)
{
    DateTime date = new DateTime(1400,1,1);
    Console.WriteLine(date.Ticks);

    DateTime date2 = new DateTime(624805819242320000L); //C++ output
    Console.WriteLine(date2);

            /*output
             * 441481536000000000
             * 6/12/1980 21:12:04
             * */
    return;
}

答案 1 :(得分:0)

.Net的“Ticks”以100纳秒为间隔。

  

ticksType:System.Int64以数字表示的日期和时间   自0001年1月1日起经过的100纳秒间隔   格里高利历中00:00:00.000

所以你需要一个已知时代的刻度计数(例如Unix纪元),纪元与所需日期/时间之间的天数,以及一天中的时间(the total_nanoseconds accessor可能会有所帮助)。然后,您可以通过简单的加法和乘法轻松计算.Net等效滴答计数。

您可能仍然与可表示的日期范围有关。