2

我想使用以下格式将日期和时间格式化为字符串:

20130630-03:11:45.862

我可以通过使用strftime来完成大部分工作,但是最后没有明确的方法来实现小数秒。

我目前的代码是:

time_t rawtime;
time(&rawtime);
tm* timeinfo = localtime(&rawtime);
char buffer[80];
strftime(buffer, 80, "%G%m%d-%I:%M:%S", timeinfo);

这会产生不带小数秒部分的值。

但是最终我只想拥有这种格式的日期的字符串版本,而不关心它需要什么 API。

我在 Linux 上使用 g++ 以防万一。

4

1 回答 1

2

如果你不关心 API,你可以使用boost::date_time它是time_facet

到目前为止的简短示例:

// setup facet and zone
// this facet should result like your desired format
std::string facet="%Y%m%d-%H:%M:%s";
std::string zone="UTC+00";

// create a facet
boost::local_time::local_time_facet *time_facet;
time_facet = new boost::local_time::local_time_facet;

// create a stream and imbue the facet
std::stringstream stream(std::stringstream::in | std::stringstream::out);
stream.imbue(std::locale(stream.getloc(), time_facet));

// create zone
boost::local_time::time_zone_ptr time_zone;
time_zone.reset(new boost::local_time::posix_time_zone(zone));

// write local from calculated zone in the given facet to stream
stream << boost::local_time::local_microsec_clock::local_time(time_zone);

// now you can get the string from stream
std::string my_time = stream.str();

这个例子可能不完整,因为我复制了一些代码,但我希望你明白了。

使用刻面,您可以设置格式。(带分形的%s小 s,不带分形的大 S)设置秒与分形。您可以在文档方面格式中阅读此内容。

时区用于计算您的本地机器时间到正确的区域。

于 2013-06-30T01:44:17.253 回答