HTTP 日期格式转 NSDate
我有一个日期字符串(嗯,NSData,但是很容易转换为字符串),我认为这是 HTTP 标准使用的格式:
Mon Apr 17 19:34:46 UTC 2006
是否有比指定更好的(即更不容易出错)的方法来解析它在 NSDateFormatter 中手动格式化字符串?
(我的应用程序是一个 iPhone 应用程序,但我怀疑标准的 Cocoa 解决方案也可以工作,因为 NSDate 和 NSDateFormatter 是 Foundation 的一部分。)
I have a date string (well, NSData, but that's easy to convert to a string) that's in what I believe is the format the HTTP standard uses:
Mon Apr 17 19:34:46 UTC 2006
Is there any better (i.e. less error-prone) way to parse that than specifying the format string by hand in an NSDateFormatter?
(My application is an iPhone app, but I suspect standard Cocoa solutions will work too, since NSDate and NSDateFormatter are part of Foundation.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,我认为没有更好的方法。
如果你有一些外部输入,你必须事先知道输入的格式,并且你只能为问题做好准备,即使用备用 NSDateFormatter 的故障转移解析器。
No, I don't think there is a better way.
If you have some outside input, you must know the format of your input beforehand, and you can only prepare for problems, i.e. a fail over parser with an alternate NSDateFormatter.