时间戳转换为时间

Posted 高晓牛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间戳转换为时间相关的知识,希望对你有一定的参考价值。

根据时间戳转换为具体的具体的时间信息,需要注意的是根据要根据具体时区做出调整

实现代码如下:

 

NSString *[email protected]"1368082020";//时间戳

    NSTimeInterval time=[str doubleValue]+28800;//因为时差问题要加8小时 == 28800 sec

    NSDate *detaildate=[NSDate dateWithTimeIntervalSince1970:time];

    NSLog(@"date:%@",[detaildate description]);

//实例化一个NSDateFormatter对象

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];

    //设定时间格式,这里可以设置成自己需要的格式

    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

 

    NSString *currentDateStr = [dateFormatter stringFromDate: detaildate];

以上是关于时间戳转换为时间的主要内容,如果未能解决你的问题,请参考以下文章

linux怎么将时间戳转换为时间

linux怎么将时间戳转换为时间

php怎么将指定日期转换为时间戳

js 中日期 转换成时间戳 例如2013-08-30 转换为时间戳

时间戳转换为时间

Android获取时间戳,以及将时间戳转换为时间