java时间戳转北京时间_时间戳转北京时间type表⽰输出时间格式
0        年⽉⽇时分秒
1        年⽉⽇
2        时分秒std::string TimestampToTimeString(time_t t, int nType)
{
t = t + 28800;//偏移⼋个时区
struct tm *p;
char s[32];
std::string strTime;
p = gmtime(&t);
switch (nType)
{
case 0:
{
strftime(s, 32, "%Y-%m-%d %H:%M:%S", p);
strTime = s;
}
break;
case 1:
{
strftime(s, 32, "%Y-%m-%d", p);
strTime = s;
java时间日期格式转换
}
break;
case 2:
{
strftime(s, 32, "%H:%M : %S", p);
strTime = s;
}
break;
default:
break;
}
return strTime; }

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。