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
相關用法
- Java OffsetDateTime get()用法及代碼示例
- Java OffsetDateTime until()用法及代碼示例
- Java OffsetDateTime with()用法及代碼示例
- Java OffsetDateTime from()用法及代碼示例
- Java OffsetDateTime equals()用法及代碼示例
- Java OffsetDateTime plusSeconds()用法及代碼示例
- Java OffsetDateTime plusWeeks()用法及代碼示例
- Java OffsetDateTime getHour()用法及代碼示例
- Java OffsetDateTime range()用法及代碼示例
- Java OffsetDateTime plusYears()用法及代碼示例
- Java OffsetDateTime plusNanos()用法及代碼示例
- Java OffsetDateTime getLong()用法及代碼示例
- Java OffsetDateTime hashCode()用法及代碼示例
- Java OffsetDateTime getMinute()用法及代碼示例
- Java OffsetDateTime getMonth()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 OffsetDateTime format() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。