16

可能重复:
如何将时间增加 1 小时

我正在使用此代码获取当前日期和时间

SimpleDateFormat sdf = new SimpleDateFormat("yyyy:MM:dd:HH:mm");
String currentDateandTime = sdf.format(new Date());
System.out.println("current time date" + currentDateandTime);

现在我想为此增加 1 小时。我搜索了但我没有得到我想要的答案。现在我变成了这样:

current time date2012:12:13:12:05

我想要一个像2012:12:13:13:0524 小时格式的答案。

4

3 回答 3

61

尝试:

SimpleDateFormat sdf = new SimpleDateFormat("yyyy:MM:dd:HH:mm");
String currentDateandTime = sdf.format(new Date());

Date date = sdf.parse(currentDateandTime);
Calendar calendar = Calendar.getInstance();
calendar.setTime(date);
calendar.add(Calendar.HOUR, 1);

System.out.println("Time here "+calendar.getTime());
于 2012-12-13T06:43:19.647 回答
20

您可以在将日期传递给 sdf.format(date) 之前像这样增加日期

   Date a=new Date();
   a.setTime(System.currentTimeMillis()+(60*60*1000));
于 2012-12-13T06:44:54.070 回答
11
Calendar now = Calendar.getInstance();
now.add(Calendar.HOUR,1);
System.out.println(now.getTime());
于 2012-12-13T07:03:09.790 回答