Just to inform for furthers developers, and thankfully to Basil Bourque, I just wanna add my stone to this topic.
If you want simply get the HH:MM:SS format then do this:
LocalTime hour = ZonedDateTime.now().toLocalTime().truncatedTo(ChronoUnit.SECONDS);
Cheers.
P.S.: This will work only at least with Java 8 !