View Single Post
  #2 (permalink)  
Old 08-01-2007, 09:56 PM
hardwired hardwired is offline
Senior Member
 
Join Date: Jul 2007
Posts: 1,222
hardwired is on a distinguished road
For time you can try:
Code:
DateFormat df = new SimpleDateFormat("hh:mm"); Calendar calendar = Calendar.getInstance(); Date date = new Date(); System.out.printf("calendar time = %s%n date = %s%ntime = %s%n", calendar.getTime(), date, df.format(date));
For milliseconds you can use System.currentTimeMillis().
Reply With Quote