gpt4 book ai didi

c++ - 如何转换此日期 :2011-02-10T07:18:04+0000 to unix timestamp in Qt

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:35:39 28 4
gpt4 key购买 nike

我正在使用 Facebook Graph Api,在我将它从 2011-02-10T06%3A52%3A02%2B0000 解码为 2011-02- 后,它在分页参数中返回此字符串10T07:18:04+0000
现在我想在 Qt 或纯 C++ 中将解码字符串转换为 unix 时间戳

最佳答案

您可以使用 QDate::fromString() 方法从格式化字符串创建 QDate

编辑:更正使用 QDateTime 代替,因为它提供了 toTime_t() 方法来获取时间戳:

QDateTime dt = QDateTime::fromString(formatted, formatString);
long timestamp = dt.toTime_t();

我会让你弄清楚 formatString 应该是什么样子。

关于c++ - 如何转换此日期 :2011-02-10T07:18:04+0000 to unix timestamp in Qt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4954536/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com