我有一个带有一些值的日期变量(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());`
答案 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秒。