SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm");
GregorianCalendar thisday = new GregorianCalendar(2005,6,1,16,30);
String drq = sdf.format(thisday.getTime());取得的是04:30分,如何取得16:30分的值