Example usage for java.time OffsetTime format

List of usage examples for java.time OffsetTime format

Introduction

In this page you can find the example usage for java.time OffsetTime format.

Prototype

public String format(DateTimeFormatter formatter) 

Source Link

Document

Formats this time using the specified formatter.

Usage

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*/

}