DateTimeFormatter fmt = DateTimeFormat.forPattern(\"HH:mm:ss\"); LocalTime localTime = fmt.parseLocalTime(\"02:51:20\"); System.out.println(\"LocalTime: \
Yes - you just need to format when you print out. Currently you're just using the default toString() representation. If you're happy with the formatter you've already got, you can just use:
toString()
System.out.println("LocalTime: " + fmt.print(localTime));