W3C Date and Time Formats (Profile of ISO 8601) に記載されているように、現在の時刻を W3C UTC 時刻文字列として取得するにはどうすればよいですか?
具体的には、私が求めているフォーマットは次のとおりです。
yyyy-mm-ddThh:mm:ssZ
例:
2013-05-24T20:07:47Z
注: Visual Studio 2010を使用しています。
W3C Date and Time Formats (Profile of ISO 8601) に記載されているように、現在の時刻を W3C UTC 時刻文字列として取得するにはどうすればよいですか?
具体的には、私が求めているフォーマットは次のとおりです。
yyyy-mm-ddThh:mm:ssZ
例:
2013-05-24T20:07:47Z
注: Visual Studio 2010を使用しています。
これが私の解決策です。Visual Studio 2010 の参照: time()、gmtime_s()
#include <iomanip>
#include <sstream>
#include <time.h>
/**
* Get the current time as a W3C UTC time string.
*
* @return A time string; the empty string if something goes wrong.
*/
std::string GetUTCTimeString(void)
{
time_t seconds_since_the_epoch;
struct tm tm_struct;
errno_t err;
std::ostringstream buf;
// Return the time as seconds elapsed since midnight, January 1, 1970,
// or -1 in the case of an error.
time(&seconds_since_the_epoch);
if (seconds_since_the_epoch == -1) {
return "";
}
// Convert the time in seconds to the time structure.
err = gmtime_s(&tm_struct, &seconds_since_the_epoch);
if (err) {
return "";
}
// Format the structure as a W3C UTC date/time string with the special
// UTC designator 'Z'.
buf
<< std::setw(4) << std::setfill('0') << tm_struct.tm_year + 1900
<< "-" << std::setw(2) << std::setfill('0') << tm_struct.tm_mon + 1
<< "-" << std::setw(2) << std::setfill('0') << tm_struct.tm_mday
<< "T" << std::setw(2) << std::setfill('0') << tm_struct.tm_hour
<< ":" << std::setw(2) << std::setfill('0') << tm_struct.tm_min
<< ":" << std::setw(2) << std::setfill('0') << tm_struct.tm_sec
<< "Z";
return buf.str();
}