概述
网上查了相关系统本地时间,说的有点乱。 获取系统时间修改后,再重新还原回系统时间的时候,常出现时区差。
经测试,关键是把时间保存下来,还原时用。
#include<iostream>
#include <Windows.h>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
SYSTEMTIME stUTC={0};
// Get the timezone info.
// TIME_ZONE_INFORMATION TimeZoneInfo;
//GetTimeZoneInformation( &TimeZoneInfo );
// Convert local time to UTC.
//SYSTEMTIME GmtTime = { 0 };
//TzSpecificLocalTimeToSystemTime( &TimeZoneInfo, &T, &GmtTime );
//TzSpecificSystemTimeToLocalTime( &TimeZoneInfo, &T, &GmtTime );
::GetLocalTime(&stUTC);
// memset(&stUTC, 0, sizeof(SYSTEMTIME));
//time ( &rawtime );
//timeinfo = localtime ( &rawtime );
//获取并保存当前时间,这是关键地方
//如果是直接通过newstUTC.wHour=oldstUTC.wHour这种方式直接赋值,时间就会出乱。差时区8 小时
WORD d=stUTC.wDay; //获得当前日期
WORD y=stUTC.wYear; //获取当前年份
WORD m=stUTC.wMonth; //获取当前月份
WORD h=stUTC.wHour; //获取当前为几时
WORD mm=stUTC.wMinute; //获取当前分钟
WORD s=stUTC.wSecond; //获取当前秒
//printf ( "