problem of date and time......
hi i wish to increment the date and time with specified time interval.....like20007/06/12 12:10:35 incremented by 30 sec20007/06/12 12:11:05and so on....plz help.....;
[223 byte] By [
BRAVOa] at [2007-11-27 8:01:36]

1.) Create an instance of java.util.Calendar2.) Initialize that instance to your start time/date using set()3.) Create a loop, call add(Calendar.SECOND, 30) for each iteration