List of usage examples for java.time OffsetTime format
public String format(DateTimeFormatter formatter)
From source file:Main.java
public static void main(String[] args) { OffsetTime m = OffsetTime.now(); String s = m.format(DateTimeFormatter.ISO_OFFSET_TIME); System.out.println(s);/*from w w w . j a v a2 s . c o m*/ }