當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java MonthDay format()用法及代碼示例


Java中的MonthDay類的format()方法使用指定的格式化程序對此month-day進行格式化。

用法:

public String format(DateTimeFormatter formatter)

參數:此方法接受參數格式化程序,該參數指定要使用的格式化程序,並且不為null。


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

以下示例程序旨在說明MonthDay.format()方法:

示例1:

// Program to illustrate the format() method 
  
import java.util.*; 
import java.time.*; 
import java.time.format.DateTimeFormatter; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Parses the date 
        MonthDay tm1 = MonthDay.parse("--12-06"); 
  
        // Uses the function 
        LocalDate dt1 = tm1.atYear(2018); 
  
        DateTimeFormatter formatter 
            = DateTimeFormatter 
                  .ofPattern("YYYY-MM-dd"); 
  
        System.out.println(formatter.format(dt1)); 
    } 
}
輸出:
2018-12-06

示例2:

// Program to illustrate the format() method 
  
import java.util.*; 
import java.time.*; 
import java.time.format.DateTimeFormatter; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Parses the date 
        MonthDay tm1 = MonthDay.parse("--10-06"); 
  
        // Uses the function 
        LocalDate dt1 = tm1.atYear(2018); 
  
        DateTimeFormatter formatter 
            = DateTimeFormatter 
                  .ofPattern("--MM-dd"); 
  
        System.out.println(formatter.format(dt1)); 
    } 
}
輸出:
--10-06

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



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 MonthDay format() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。