Nov 6, 2003 #1 chuntok Programmer Joined Oct 21, 2003 Messages 3 Location MY How do i get the current date and time? And how do i add 1 minute to the date and time that I get?
Nov 6, 2003 #2 byam Programmer Joined Oct 24, 2003 Messages 396 Location CA here you go. Code: Calendar now = Calendar.getInstance(); now.add(Calendar.MINUTE, 1); Upvote 0 Downvote