Java por horas a horas e segundos
Calendar calendar = Calendar.getInstance();
calendar.setTime(new Date(millis));
//And then....
calendar.get(Calendar.HOUR_OF_DAY) //use Calendar.HOUR for AM format
calendar.get(Calendar.MINUTE)
calendar.get(Calendar.SECOND)
UnAngeloCheSiChiamaTheKing