我正在编写一个小程序来下载气象软件包使用的相应文件集。这些文件的格式类似于UTC中的YYYYMMDD
和YYYYMMDD HHMM
。我想知道 C ++ 中UTC的当前时间,我在Ubuntu上。有一种简单的方法吗?
答案 0 :(得分:7)
C ++中的高端答案是使用Boost Date_Time。
但这可能有点矫枉过正。 C库具有您在strftime
中所需的内容,手册页有一个示例。
/* from man 3 strftime */
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
char outstr[200];
time_t t;
struct tm *tmp;
const char* fmt = "%a, %d %b %y %T %z";
t = time(NULL);
tmp = gmtime(&t);
if (tmp == NULL) {
perror("gmtime error");
exit(EXIT_FAILURE);
}
if (strftime(outstr, sizeof(outstr), fmt, tmp) == 0) {
fprintf(stderr, "strftime returned 0");
exit(EXIT_FAILURE);
}
printf("%s\n", outstr);
exit(EXIT_SUCCESS);
}
我根据手册页中的内容添加了一个完整的示例:
$ gcc -o strftime strftime.c
$ ./strftime
Mon, 16 Dec 13 19:54:28 +0000
$
答案 1 :(得分:6)
您可以使用gmtime:
struct tm * gmtime (const time_t * timer);
Convert time_t to tm as UTC time
以下是一个例子:
std::string now()
{
std::time_t now= std::time(0);
std::tm* now_tm= std::gmtime(&now);
char buf[42];
std::strftime(buf, 42, "%Y%m%d %X", now_tm);
return buf;
}
ideone链接:http://ideone.com/pCKG9K