xml解析中如何将接口返回的13位time转化为正常的时间

前端之家收集整理的这篇文章主要介绍了xml解析中如何将接口返回的13位time转化为正常的时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

接口返回的数据:

<time>1377000845058</time>

解析:

//时间戳转时间,时间的格式设置

NSDateFormatter* formatter = [[[NSDateFormatteralloc] init]autorelease];

[formatter setDateStyle:NSDateFormatterMediumStyle];

[formatter setTimeStyle:NSDateFormatterShortStyle];

[formatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"];

//时间戳转时间的方法

NSDate *confromTimesp = [NSDatedateWithTimeIntervalSince1970:[bean.timedoubleValue]/1000];

NSLog(@"changTime = %@",confromTimesp);

//NSDate类型转化为string类型,方便label赋值

NSString *timeString=[formatter stringFromDate:confromTimesp];

time_label.text=timeString;//这样time_label显示将会按照YYYY-MM-dd HH:mm:ss这种样式显示时间

原文链接:https://www.f2er.com/xml/299733.html

猜你在找的XML相关文章