Here you can find the source of convertLocalTimeToString(LocalTime time)
public static String convertLocalTimeToString(LocalTime time)
//package com.java2s; //License from project: Apache License import java.time.LocalTime; import java.time.format.DateTimeFormatter; public class Main { public static final String TIME_FORMAT = "HH:mm"; public static String convertLocalTimeToString(LocalTime time) { DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern(TIME_FORMAT); return time.format(dateTimeFormatter); }/*from w w w . j ava2 s . co m*/ }