2

在我的服务器上运行date会导致正确的时间。但是localtime()在 C(++) 中使用我得到了错误的时间。

运行dateFr 30. Nov 12:15:36 CET 2012

使用localtime()Fr 30 Nov 2012 11:15:36 CET

这里有什么问题?

操作系统:Debian 5.0.10

一些代码:

struct tm* today;
today = localtime(...);
strftime(timeBuffer,50,myConnection.getMetaData().getDateFormat().c_str(),today);
4

4 回答 4

2

免责声明:此答案是在添加任何提及之前编写的,strftime是对时间戳 1 小时差异的直觉反应。现在回想起来,这 1 小时的差异不可能是由于 DST(因为日期不是夏天),而是可能显示 UTC 时间戳(UTC 和 CET 之间的 1 小时差异)。

不幸的是,答案被接受了,所以我不能删除它。更不幸的是,如果没有额外的信息,就无法回答这个问题。

在这里留下原始答案以获得完全透明,但要知道它没有解决所问的问题:

struct tm返回localtimetm_isdst字段指示夏令时 (DST) 是否有效。在格式化时间时,您需要考虑该字段。

尝试使用asctime格式化时间,例如。:

puts(asctime(today));
于 2012-11-30T11:36:55.270 回答
1

我在编写日期调整例程时遇到了同样的问题。将 86400 秒(= 1 天)添加到任何给定的日期时间值导致日期时间值增加一天。然而在测试中,输出值总是在预期输出上增加一小时。例如,“2019-03-20 00:00:00 增加 86400 秒导致“2019-03-21 01:00:00 。反过来也发生了:“2019-03-21 00:00:00 -86400导致“2019-03-20 01:00:00

解决方案(莫名其妙地)是从最终间隔中减去 3600 秒(一小时),然后再将其应用于输入日期时间。

解决方案(感谢@Lightness-Races-in-Orbit 的有用评论tm_isdst)是在调用之前设置为 -1 mktime()。这mktime()表明输入日期时间值的 DST 状态是未知的,mktime()应该使用系统时区数据库来确定输入日期时间值的正确时区。

该函数(如下更正)允许对天数进行任何整数调整,现在可以产生始终正确的结果:

#include <stdio.h> 
#include <string.h>
#include <time.h>        

/*******************************************************************************
 *  \fn             adjust_date()
 *******************************************************************************/

int adjust_date(
                        char    *original_date,
                        char    *adjusted_date,
                        char    *pattern_in,
                        char    *pattern_out,
                        int      adjustment,
                        size_t   out_size)
{
/*
struct tm {
    int tm_sec;         // seconds          0-59
    int tm_min;         // minutes          0-59
    int tm_hour;        // hours            0-23
    int tm_mday;        // day of the month 1-31
    int tm_mon;         // month            0-11
    int tm_year;        // year       minus 1900
    int tm_wday;        // day of the week  0-6
    int tm_yday;        // day in the year  0-365
    int tm_isdst;       // daylight saving time 
};
*/
    struct tm day;

    time_t one_day = 86400;
//  time_t interval = (one_day * adjustment) - 3600;
    time_t interval = (one_day * adjustment);

    strptime(original_date, pattern_in, &day);

    day.tm_isdst = -1;
    time_t t1 = mktime(&day);

    if (t1 == -1) {
        printf("The mktime() function failed");
        return -1;
    }

    time_t t2 = t1 + interval;

    struct tm *ptm = localtime(&t2);

    if (ptm == NULL) {
        printf("The localtime() function failed");
        return -1;
    }

    strftime(adjusted_date, out_size, pattern_out, ptm);

    return 0;
}

/*******************************************************************************
 *  \fn             main()
 *******************************************************************************/
int main()
{
    char    in_date[64]     = "20190321000000" ,
            out_date[64],
            pattern_in[64]  = "%Y%m%d%H%M%S",
            pattern_out[64] = "%Y-%m-%d %H:%M:%S";

    int     day_diff = -1,
            ret = 0;

    size_t  out_size = 64;

    memset(out_date, 0, sizeof(out_date));

    ret = adjust_date(in_date, out_date, pattern_in, pattern_out, day_diff, out_size); 

    if (ret == 0)
    {
        printf("Adjusted date: '%s'\n", out_date);
    }

    return ret;
}

希望这会对某人有所帮助。非常感谢您的建设性意见。

于 2019-04-02T13:14:41.403 回答
0

Did you try this ? :

 time_t rawtime;
 struct tm * today;

 time ( &rawtime );
 today= localtime ( &rawtime );
 puts(asctime (today));
于 2012-11-30T11:55:25.030 回答
0

handling date time is very error prone and usually badly tested. i always recommend using boost::date_time http://www.boost.org/doc/libs/1_52_0/doc/html/date_time.html

here are nice examples http://en.highscore.de/cpp/boost/datetime.html

于 2012-11-30T12:42:28.483 回答