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


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


Java方法中ChronoLocalDate接口的format()方法使用指定的格式化程序格式化此日期。

用法

public String format(DateTimeFormatter formatter)

参数:此方法接受参数obj,该参数指定要使用的格式化程序,并且不为null。


异常:该函数仅引发DateTimeException,该异常在打印错误期间发生。

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

以下程序说明了Java中ChronoLocalDate的format()方法:

程序1

// Program to illustrate the format() method 
  
import java.util.*; 
import java.time.*; 
import java.time.chrono.*; 
import java.time.format.DateTimeFormatter; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Parses the date 
        ChronoLocalDate dt 
            = LocalDate.parse("2018-11-01"); 
        System.out.println(dt); 
  
        // Function call 
        DateTimeFormatter formatter 
            = DateTimeFormatter 
                  .ofPattern("dd/MM/YYYY"); 
  
        System.out.println(formatter.format(dt)); 
    } 
}
输出:
2018-11-01
01/11/2018

程序2:说明异常。

// Program to illustrate the format() method 
// Exception Program 
  
import java.util.*; 
import java.time.*; 
import java.time.chrono.*; 
import java.time.format.DateTimeFormatter; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        try { 
            // Parses the date 
            ChronoLocalDate dt 
                = LocalDate.parse("2018-01-32"); 
            System.out.println(dt); 
  
            // Function call 
            DateTimeFormatter formatter 
                = DateTimeFormatter 
                      .ofPattern("dd/MM/YYYY"); 
  
            System.out.println(formatter.format(dt)); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
java.time.format.DateTimeParseException: 
 Text '2018-01-32' could not be parsed:
 Invalid value for DayOfMonth (valid values 1 - 28/31): 32

参考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#format-java.time.format.DateTimeFormatter-



相关用法


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