HTTP 日期格式转 NSDate

发布于 2024-07-14 15:05:59 字数 280 浏览 11 评论 0原文

我有一个日期字符串(嗯,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我为君王 2024-07-21 15:05:59

不,我认为没有更好的方法。

如果你有一些外部输入,你必须事先知道输入的格式,并且你只能为问题做好准备,即使用备用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文