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
相关用法
- Java MonthDay from()用法及代码示例
- Java MonthDay with()用法及代码示例
- Java MonthDay get()用法及代码示例
- Java MonthDay isSupported()用法及代码示例
- Java MonthDay getLong()用法及代码示例
- Java MonthDay isValidYear()用法及代码示例
- Java MonthDay isBefore()用法及代码示例
- Java MonthDay isAfter()用法及代码示例
- Java MonthDay getMonthValue()用法及代码示例
- Java MonthDay compareTo()用法及代码示例
- Java MonthDay equals()用法及代码示例
- Java MonthDay getDayOfMonth()用法及代码示例
- Java MonthDay atYear()用法及代码示例
- Java MonthDay getMonth()用法及代码示例
- Java MonthDay toString()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 MonthDay format() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。