返回的日期时间的格式 如:2012/04/10 14:32:25.456
CString GetTimeStr()
{
SYSTEMTIME time;
GetLocalTime(&time);
CString year;
CString month;
CString day;
year.Format(_T("%d"), time.wYear);
month.Format(_T("%d"), time.wMonth);
day.Format(_T("%d"), time.wDay);
month = time.wMonth < 10 ? (_T("0") + month):month;
day = time.wDay < 10 ? (_T("0") + day):day;
wstring strTime = year + _T("/") + month + _T("/") + day + _T(" ");
WCHAR* pTime = new WCHAR[30];
wstring strFormat = _T("HH:mm:ss");
GetTimeFormat(LOCALE_INVARIANT , LOCALE_USE_CP_ACP, &time, strFormat.c_str(), pTime, 30);
strTime += pTime;
CString milliseconds;
milliseconds.Format(_T("%d"), time.wMilliseconds);
strTime += _T(".") + milliseconds;
return strTime.c_str();
}
本文介绍了一个用于获取并格式化当前系统日期和时间的C++函数。该函数利用Windows API中的GetLocalTime和GetTimeFormat来获取本地时间和将其格式化为字符串,最终返回形如2012/04/10 14:32:25.456的日期时间格式。
1864

被折叠的 条评论
为什么被折叠?



