我正在尝试使用boost::date_time将日期字符串(从Twitter API获取)解析为ptime对象。日期格式的示例是:
Thu Mar 24 16:12:42 +0000 2011
无论我做什么,在尝试解析字符串时都会收到“年份超出有效范围”异常。日期格式对我来说看起来正确,这是代码:
boost::posix_time::ptime created_time;
std::stringstream ss(created_string);
ss.exceptions(std::ios_base::failbit); //Turn on exceptions
ss.imbue(std::locale(ss.getloc(), new boost::posix_time::time_input_facet("%a %b %d %T %q %Y")));
ss >> created_time;
在上面的代码中,“created_string”包含上述日期。我在格式字符串中是否犯了错误?
最佳答案
%T
和%q
都是输出在线格式标志。
为了证明这一点,请将格式更改为"%a %b %d %H:%M:%S +0000 %Y"
,程序将按照说明运行。
至于时区输入,它要复杂一些,您可能需要对字符串进行预处理,才能先将+0000更改为posix time zone format。
编辑:例如,您可以这样操作:
#include <iostream>
#include <sstream>
#include <boost/date_time.hpp>
int main()
{
//std::string created_string = "Thu Mar 24 16:12:42 +0000 2011";
// write your own function to search and replace +0000 with GMT+00:00
std::string created_string = "Thu Mar 24 16:12:42 GMT+00:00 2011";
boost::local_time::local_date_time created_time(boost::local_time::not_a_date_time);
std::stringstream ss(created_string);
ss.exceptions(std::ios_base::failbit);
ss.imbue(std::locale(ss.getloc(),
new boost::local_time::local_time_input_facet("%a %b %d %H:%M:%S %ZP %Y")));
ss >> created_time;
std::cout << created_time << '\n';
}
关于c++ - 年份超出有效范围: 1400. ..10000,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5422317/