如何在C ++中将time_t类型转换为字符串?

时间:2014-02-05 22:07:13

标签: c++ string ctime

是否可以将ltm->tm_mday转换为字符串?

我试过这个,但是,这不起作用!

time_t now = time(0); 
tm *ltm = localtime(&now); 
String dateAjoutSysteme = ltm->tm_mday + "/" + (1 + ltm->tm_mon) + "/" + (1900 + ltm->tm_year) + " " + (1 + ltm->tm_hour) + ":" + (1 + ltm->tm_min) + ":" + (1 + ltm->tm_sec);

2 个答案:

答案 0 :(得分:1)

您可以使用复杂的strftime转换time_t,简单的asctime函数转换为char数组,然后使用相应的std::string构造函数。 简单的例子:

std::string time_string (std::asctime (timeinfo)));

编辑:

特别是对于您的代码,答案是:

 std::time_t now = std::time(0);
 tm *ltm = std::localtime(&now); 
 char mbstr[100];
 std::strftime(mbstr, 100, "%d/%m/%Y %T", std::localtime(&t));
 std::string dateAjoutSysteme (mbstr);

答案 1 :(得分:1)

我完全不相信这是最好的方法,但它有效:

#include <time.h>
#include <string>
#include <sstream>
#include <iostream>
int main() {
    time_t now = time(0);
    tm *ltm = localtime(&now);
    std::stringstream date;
    date << ltm->tm_mday
         << "/"
         << 1 + ltm->tm_mon
         << "/"
         << 1900 + ltm->tm_year
         << " "
         << 1 + ltm->tm_hour
         << ":"
         << 1 + ltm->tm_min
         << ":"
         << 1 + ltm->tm_sec;
    std::cout << date.str() << "\n";
}

strftime()函数将为您完成大部分工作,但使用stringstream构建字符串部分可能更为常用。