可能重复:
如何将时间增加 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:05
24 小时格式的答案。