time_t seconds;
time(&seconds);
cout << seconds << endl;
This gives me a timestamp. How can I get that epoch date into a string?
std::string s = seconds;
does not work
|
|
|
Try stringstream.
A nice wrapper around the above technique is Boost's lexical_cast:
And for questions like this, I'm fond of linking The String Formatters of Manor Farm by Herb Sutter. |
||||
|
|
|
Try this if you want to have the time in a readable string:
For further reference of strftime() check out cplusplus.com |
|||
|
|
Standard C++ does not have any time/date functions of its own - you need to use the C localtime and related functions. |
|||||
|
|
the function "ctime()" will convert a time to a string. If you want to control the way its printed, use "strftime". However, strftime() takes an argument of "struct tm". Use "localtime()" to convert the time_t 32 bit integer to a struct tm. |
|||
|
|
|
The C++ way is to use stringstream. The C way is to use snprintf() to format the number:
|
|||
|
|
|
There are a myriad of ways in which you might want to format time (depending on the time zone, how you want to display it, etc.), so you can't simply implicitly convert a time_t to a string. The C way is to use ctime or to use strftime plus either localtime or gmtime. If you want a more C++-like way of performing the conversion, you can investigate the Boost.DateTime library. |
||||
|
|