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
相關用法
- Java ChronoLocalDate until(ChronoLocalDate)用法及代碼示例
- Java ChronoLocalDate get()用法及代碼示例
- Java ChronoLocalDate from()用法及代碼示例
- Java ChronoLocalDate range()用法及代碼示例
- Java ChronoLocalDate isAfter()用法及代碼示例
- Java ChronoLocalDate isBefore()用法及代碼示例
- Java ChronoLocalDate plus(TemporalAmount)用法及代碼示例
- Java LocalDate until(ChronoLocalDate)用法及代碼示例
- Java ChronoLocalDate getChronology()用法及代碼示例
- Java ChronoLocalDate toEpochDay()用法及代碼示例
- Java ChronoLocalDate lengthOfMonth()用法及代碼示例
- Java ChronoLocalDate compareTo()用法及代碼示例
- Java ChronoLocalDate with(TemporalAdjuster)用法及代碼示例
- Java ChronoLocalDate isEqual()用法及代碼示例
- Java ChronoLocalDate isLeapYear()用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 ChronoLocalDate format() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。