当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java OffsetDateTime format()用法及代码示例


Java中OffsetDateTime类的format()方法使用指定的格式化程序对此日期时间进行格式化。

用法:

public String format(DateTimeFormatter formatter)

参数:此方法接受单个参数格式化程序,该参数指定要使用的格式化程序,而不是null。


返回值:它返回格式化的日期字符串,而不是null。

异常:函数将在打印过程中发生错误时引发DateTimeException。

以下示例程序旨在说明format()方法:

示例1:

// Java program to demonstrate the format() method 
import java.time.OffsetDateTime; 
import java.time.format.DateTimeFormatter; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Parses the date1 
        OffsetDateTime date1 = OffsetDateTime.parse("2018-12-12T13:30:30+05:00"); 
  
        // Prints the date 
        System.out.println("Date1: " + date1); 
  
        DateTimeFormatter formatter = DateTimeFormatter.ISO_TIME; 
        System.out.println(formatter.format(date1)); 
    } 
}
输出:
Date1: 2018-12-12T13:30:30+05:00
13:30:30+05:00

程序2

// Java program to demonstrate the format() method 
// Exceptions 
  
import java.time.OffsetDateTime; 
import java.time.format.DateTimeFormatter; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        try { 
            // Parses the date1 
            OffsetDateTime date1 = OffsetDateTime.parse("2018-13-12T13:30:30+05:00"); 
  
            // Prints the date 
            System.out.println("Date1: " + date1); 
  
            DateTimeFormatter formatter = DateTimeFormatter.ISO_TIME; 
            System.out.println(formatter.format(date1)); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
java.time.format.DateTimeParseException: Text '2018-13-12T13:30:30+05:00' could not be parsed: Invalid value for MonthOfYear (valid values 1 - 12): 13

参考: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html#format-java.time.format.DateTimeFormatter-



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 OffsetDateTime format() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。