NSDateFormatter 不工作...我错在哪里?
我正在尝试解析以 UTC 格式写入的日期。例如,
NSString *o = @"2011-04-23$20:28:00Z";
这是我正在使用的代码:
df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"yyyy-MM-dd$HH:mm:00Z"];
NSLog(@"^%@^ => %@", o, [df stringFromDate:[df dateFromString:o]]);
它生成日志记录
^2011-04-23$20:28:00Z^ => (null)
我哪里错了?
谢谢!
i'm trying to parse a date writte in UTC format. For example
NSString *o = @"2011-04-23$20:28:00Z";
Here's the code i'm using:
df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"yyyy-MM-dd$HH:mm:00Z"];
NSLog(@"^%@^ => %@", o, [df stringFromDate:[df dateFromString:o]]);
it produces the logging
^2011-04-23$20:28:00Z^ => (null)
Where am i wrong?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
日期格式字符串中的
Z
符号指定时区字段,如果要解析文字“Z”,则需要使用'
对其进行转义:yyyy-MM-dd$HH:mm:00'Z
。The
Z
symbol in a date format string specifies a field for the timezone, if you want to parse the literal "Z", you will need to escape it with a'
:yyyy-MM-dd$HH:mm:00'Z
.