小编典典

从现有的Date对象java中减去6小时(午夜时分)

java

我将Calendar为此使用api。我主要担心的是

            Date birthDate = (...say Apr 20th 0300hrs)
            Calendar cal = Calendar.getInstance();
            cal.setTime(birthDate);
            cal.add(Calendar.HOUR, -6);
            Date newDate = cal.getTime();

newDate在4月19日2100hrs(9 PM)?


阅读 635

收藏
2020-12-03

共1个答案

小编典典

没有。

运行以下代码后:

Date birthDate = (...say Apr 20th 0300hrs)
Calendar cal = Calendar.getInstance();
cal.setTime(birthDate);
cal.add(Calendar.HOUR, -6);

您可以确保将cal设置为“ Apr 20th 0300hrs”之前六小时,但不能保证将其设置为“ Apr 19th 2100hrs”。

2020-12-03