我有一个具有某些值(例如10:40)的日期变量(endTime)。我需要通过向endTime添加10分钟来创建一个新变量。我该怎么做?
提前致谢
public static String endTime = ""; DateFormat timeFormat = new SimpleDateFormat("HH:mm:ss"); Calendar cal = Calendar.getInstance(); endTime = timeFormat.format(cal.getTime());`
您可以add在上使用方法Calendar:
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秒钟。