如何在java中为日期变量添加分钟

时间:2014-06-04 08:29:55

标签: java

我有一个带有一些值的日期变量(endTime)(例如:10:40)。我需要通过向endTime添加10分钟来创建一个新变量。我该怎么办?

提前致谢

public static  String endTime = "";
DateFormat timeFormat = new SimpleDateFormat("HH:mm:ss");
Calendar cal = Calendar.getInstance();

endTime = timeFormat.format(cal.getTime());`

1 个答案:

答案 0 :(得分:5)

您可以在add上使用Calendar方法:

public static  String endTime = "";
DateFormat timeFormat = new SimpleDateFormat("HH:mm:ss");
Calendar cal = Calendar.getInstance();

cal.add(Calendar.MINUTE, 10)

endTime = timeFormat.format(cal.getTime());`

在Javadoc发现,它需要30秒。