为什么 NSDateFormatter 无法解析 ISO 8601 格式的日期
我使用 Rails 作为后端,默认日期输出是2008-12-29T00:27:42-08:00
但经过我的研究 NSDateFormatter 无法支持它,除非我将日期更改为 2008-12-29T00:27:42-0800
这是我用来解析 ISO 8601 的代码约会,但这不起作用
NSDateFormatter* dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ssZ"];
NSLog(@"%@", [dateFormatter dateFromString:@"2008-12-29T00:27:42-08:00"]);
有什么想法吗?
Possible Duplicate:
Converting an ISO 8601 timestamp into an NSDate: How does one deal with the UTC time offset?
I use rails as backend, the default date output is 2008-12-29T00:27:42-08:00
But after my research NSDateFormatter can not support it, except I change date out to 2008-12-29T00:27:42-0800
Here is the code I used to parse ISO 8601 date, but it's not work
NSDateFormatter* dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ssZ"];
NSLog(@"%@", [dateFormatter dateFromString:@"2008-12-29T00:27:42-08:00"]);
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题出在最后的时区。
您需要将其设置为:GMT-0X:00 或 -0X00,小时和分钟之间没有分隔。
以下两种组合有效:
组合 1 - 使用 GMT 格式 (GMT-0X:00) 和 ZZZZ
组合 2 - 使用 RFC 822 格式 (-0X00) 和 ZZZ
The problem is with the timezone on the end.
You need to either have it as: GMT-0X:00 or as -0X00 with no separate between hours and minutes.
The following two combinations work:
Combo 1 - use GMT format (GMT-0X:00) and ZZZZ
Combo 2 - use RFC 822 format (-0X00) and ZZZ