本文介绍了如何在java中为日期变量添加分钟的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个带有一些值的日期变量(endTime)(例如:10:40)。我需要通过向endTime添加10分钟来创建一个新变量。我该怎么办?
I have a date variable (endTime) with some value (eg : 10:40). I need to create a new variable by adding 10 minutes to endTime. How can I do it?
提前致谢
public static String endTime = "";
DateFormat timeFormat = new SimpleDateFormat("HH:mm:ss");
Calendar cal = Calendar.getInstance();
endTime = timeFormat.format(cal.getTime());`
推荐答案
您可以在日历
上使用添加
方法:
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秒。
Found in Javadoc, it takes me 30 seconds.
这篇关于如何在java中为日期变量添加分钟的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!