gpt4 book ai didi

JAVA - 它是 java.util.Calendar 类中的错误还是什么?

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:15:02 25 4
gpt4 key购买 nike

我遇到过很多次同样的问题。

同样的问题和这个问题一样,得到了同样的解决方案, How to compare known hours ad current hour in android?

问题:

当我使用 Calendar calCurr = Calendar.getInstance(); 获取当前日期和时间的 Calendar 对象时,它总是返回错误。

我已经放置了日志并进行了检查,为了使其正确,我必须添加年和月,然后我得到了当前日期和时间的正确对象。

看我的例子:

    Calendar calCurr = Calendar.getInstance();
Log.i("Time in mili of Current - Normal", ""+calCurr.getTimeInMillis());
// see what it gives? dont know why?

Date date = new Date();
calCurr.set(date.getYear()+1900, date.getMonth()+1, date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds());
// so added one month to it

Log.i("Time in mili of Current - after update", ""+calCurr.getTimeInMillis());
// now get correct

问题:

  • 为什么输出错误?
  • 是那里的错误还是我对 Calendar 类的概念有误?
  • 告诉我应该做什么为此?

最佳答案

如果您更改为 getDate(),它会按预期完美运行,它会输出:

Time in mili of Current - Normal Wed Apr 04 11:34:34 BST 2012

Time in mili of Current - after update Fri May 04 11:34:34 BST 2012

你期待什么?以毫秒为单位,它也等于 30 天:

Time in mili of Current - Normal 1333535834557

Time in mili of Current - after update 1336127834557

并且计算是(差异,除以一天中的毫秒数):

1336127834557 - 1333535834557 = 2 592 000 000

2592000000 / 86400000 = 30

1970 年之后的今天日期(以毫秒为单位)是 1333536754 ...适合,我看不出有什么问题。

编辑

您的问题是您将月份设置为 3 表示三月......您需要设置 2..因为月份的索引从 0 到 11。

关于JAVA - 它是 java.util.Calendar 类中的错误还是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10009339/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com