计算两个日期之间的天数 - J2ME

发布于 2024-12-08 15:06:47 字数 111 浏览 1 评论 0原文

我想计算两个日期之间的天数,我在网上找到了一些解决方案,但问题出在我的 NetBeans 中, GregorianCalendar 不可用。所以无法计算天数。有人可以帮忙吗?

I want to count days between two date, I found some solutions on the net but the problem is in my NetBeans the GregorianCalendar is not available. So cant calculate the days. Can anyone help ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

む无字情书 2024-12-15 15:06:47

在 Java Micro Edition 中,您没有 GregorianCalendar,因此您必须使用:

Date startDate, endDate;
...
int days = (int) ((endDate.getTime() - startDate.getTime())  
    / (1000 * 60 * 60 * 24)); 

Date 的 getTime() 方法返回自 1970 年 1 月 1 日 00:00:00 GMT 以来的毫秒数

In Java Micro Edition you don't have GregorianCalendar, so you have to use:

Date startDate, endDate;
...
int days = (int) ((endDate.getTime() - startDate.getTime())  
    / (1000 * 60 * 60 * 24)); 

Where the getTime() method of a Date returns the number of milliseconds since January 1, 1970, 00:00:00 GMT

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