Objective C 时间戳不等于 java 时间戳

发布于 2024-12-09 03:19:21 字数 346 浏览 3 评论 0原文

我正在开发一个从后端接收数据的应用程序。问题是,日期在我的应用程序中无法正常工作。所以我最终比较了 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 技术交流群。

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

发布评论

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

评论(1

听闻余生 2024-12-16 03:19:21

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);

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