计算两个日期之间的天数 - J2ME
我想计算两个日期之间的天数,我在网上找到了一些解决方案,但问题出在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Java Micro Edition 中,您没有 GregorianCalendar,因此您必须使用:
Date 的 getTime() 方法返回自 1970 年 1 月 1 日 00:00:00 GMT 以来的毫秒数
In Java Micro Edition you don't have GregorianCalendar, so you have to use:
Where the getTime() method of a Date
returns the number of milliseconds since January 1, 1970, 00:00:00 GMT