24-hour Format instead of 12-hour Format
I'm using the following to get the current time.
java.util.Date date =new java.util.Date();
SimpleDateFormat sdf =new SimpleDateFormat("hh:mm:ss");
String dateString = sdf.format(date);
That works perfectly, except for the fact that we don't use the 12-hour format, but the 24-hour format. I searched the web, but couldn't find a script to simply get '14:50' instead of '2:50'. Anyone?

