c++ - 如何正确地将字符串转换为 std::chrono::system_clock::time_point?

标签 c++ date-parsing datetime-parsing

我遵循了类似问题的一些很好的答案 one

然而,我的代码似乎在将字符串转换为 time_point 并返回字符串后一小时后给出输出。

给出错误答案的代码:

#include <string>
#include <ctime>
#include <chrono>
#include <iomanip>
#include <iostream>
#include <sstream>

using date_time = std::chrono::system_clock::time_point;

std::string dateTimeToString(date_time time) {
    std::time_t now_c = std::chrono::system_clock::to_time_t(time);
    auto tm = std::localtime(&now_c);
    char buffer[32];
    std::strftime(buffer, 32, "%Y-%m-%d %H:%M:%S", tm);
    return std::string(buffer);
}

date_time stringToDateTime(const std::string &s) {
    std::tm timeDate = {};
    std::istringstream ss(s);
    ss >> std::get_time(&timeDate, "%Y-%m-%d %H:%M:%S");
    return std::chrono::system_clock::from_time_t(mktime(&timeDate));
}

int main() {
    std::string birthday = "2000-06-05 20:20:00";
    std::cout << "Two birthday dates: \n" << birthday << " \nsecond one:\n" << dateTimeToString(stringToDateTime(birthday))
              << "\n******************\n";
    return 0;
}

输出:

Two birthday dates: 2000-06-05 20:20:00 second one: 2000-06-05 21:20:00


我认为这与时区有关,但我无法解决这个问题。我的代码有什么问题吗?

最佳答案

您可以使用boost库进行时间管理。

看看boost::date_time::parse_date(const std::string& s, int order_spec = ymd_order_iso) :

//! Generic function to parse a delimited date (eg: 2002-02-10)
/*! Accepted formats are: "2003-02-10" or " 2003-Feb-10" or
 * "2003-Feburary-10"
 * The order in which the Month, Day, & Year appear in the argument
 * string can be accomodated by passing in the appropriate ymd_order_spec
 */

然后在 boost::date_time::parse_delimited_time_duration(const std::string& s) :

//! Creates a time_duration object from a delimited string
/*! Expected format for string is "[-]h[h][:mm][:ss][.fff]".
 * If the number of fractional digits provided is greater than the 
 * precision of the time duration type then the extra digits are 
 * truncated.
 *
 * A negative duration will be created if the first character in
 * string is a '-', all other '-' will be treated as delimiters.
 * Accepted delimiters are "-:,.". 
 */

Boost 为这两种方法创建了一个包装函数,可以解析日期时间字符串:

template<class time_type>
inline time_type parse_delimited_time(const std::string& s, char sep) {
    typedef typename time_type::time_duration_type time_duration;
    typedef typename time_type::date_type date_type;

    //split date/time on a unique delimiter char such as ' ' or 'T'
    std::string date_string, tod_string;
    split(s, sep, date_string, tod_string);
    //call parse_date with first string
    date_type d = parse_date<date_type>(date_string);
    //call parse_time_duration with remaining string
    time_duration td = parse_delimited_time_duration<time_duration>(tod_string);
    //construct a time
    return time_type(d, td);

}

如果您想要不同的日期格式解析器,我做了一个稍微不同的实现:

posix_time::ptime parse_dmy_time(const std::string &s, char sep) {
    typedef typename posix_time::ptime::time_duration_type time_duration;
    typedef typename posix_time::ptime::date_type date_type;

    //split date/time on a unique delimiter char such as ' ' or 'T'
    std::string date_string, tod_string;
    split(s, sep, date_string, tod_string);
    //call parse_date with first string
    auto d = parse_date<date_type>(date_string, ymd_order_dmy);
    //call parse_time_duration with remaining string
    auto td = parse_delimited_time_duration<time_duration>(tod_string);
    //construct a time
    return {d, td};
}

关于c++ - 如何正确地将字符串转换为 std::chrono::system_clock::time_point?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60230149/

相关文章:

c++ - 如何检查(在 C/C++ 代码中)我的计算机上是否安装了 Openssl?

c++ - Netbeans C/C++ 链接器问题

python - 如何将 ISO 8601 日期时间字符串转换为 Python 日期时间对象?

java - 将字符串时间转换为本地时间以进行比较

C#如何复制excel的内容如你所见(例如: date time as you see is 12/31/2018, excel内容为43465之类的数字)

c++ - 如何从Opencv中的图像矩阵中提取数值梯度矩阵

c++ - QT如何使用QTableView在QList中显示QMap

ruby-on-rails - 在 rails 中解析日期

javascript - 如何使用JSON.parse reviver参数解析日期字符串

java - jackson jsr310 中缺少 ZonedDateTimeDeserializer