Objective C 时间戳不等于 java 时间戳
我正在开发一个从后端接收数据的应用程序。问题是,日期在我的应用程序中无法正常工作。所以我最终比较了 cocoa 生成的时间戳和我的 java 后端生成的时间戳。
有什么原因导致java的比objective c的长很多吗?
只是比较:
java
1318226845471
cocoa
1318226841
我正在生成 cocoa 时间戳:
[[NSDate date] timeIntervalSince1970]
有什么建议吗?我将不胜感激任何帮助!
预先感谢,亚历克斯
I am working on an application receiving data from a backend. The problem is, that the dates are not working properly in my app. So I ended up comparing the timestamps generated by cocoa and the ones generated by my java backend.
Is there any reason that the java one is much longer than the objective c one?
Just compared:
java
1318226845471
cocoa
1318226841
I am generating the cocoa timestamp with:
[[NSDate date] timeIntervalSince1970]
Any suggestions? I would appreciate any help!
Thanks in advance, Alex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Java 返回自 1970 年 1 月 1 日以来的毫秒数。 Objective C 是自 1970 年 1 月 1 日以来的秒数,
只需在 java 中使用以秒为单位的结果 return (int) (System.currentTimeMillis() / 1000L);
Java returns milliseconds since Jan 1, 1970. Objective C is seconds since Jan 1, 1970
just use in java to get the result in seconds return (int) (System.currentTimeMillis() / 1000L);