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


Java LocalDate withDayOfMonth()用法及代码示例


Java中LocalDate类的withDayOfMonth()方法返回已更改day-of-month的此LocalDate的副本。

用法:

public LocalDate withDayOfMonth(int dayOfMonth)

参数:此方法接受强制性参数dayOfMonth,其中day-of-month可以在1到28-31之间设置结果。


返回值:该函数基于此日期和所请求的日期返回LocalDate,而不是null。

异常:当月份中的日期值无效时,该函数将引发DateTimeException。

以下示例程序旨在说明LocalDate.withDayOfMonth()方法:

示例1:

// Program to illustrate the withDayOfMonth() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Parses the date 
        LocalDate dt1 = LocalDate.parse("2018-12-07"); 
        LocalDate result = dt1.withDayOfMonth(01); 
  
        // Prints the date with year 
        System.out.println("The date with day of the month is: " + result); 
    } 
}
输出:
The date with day of the month is: 2018-12-01

示例2:

// Program to illustrate the withDayOfMonth() method 
// Exceptions 
import java.util.*; 
import java.time.*; 
import java.time.temporal.ChronoField; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        try { 
            // Parses the date 
            LocalDate dt1 = LocalDate.parse("2018-12-07"); 
            LocalDate result = dt1.withDayOfMonth(35); 
  
            // Prints the date with year 
            System.out.println("The date with day of the month is: " + result); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
java.time.DateTimeException: Invalid value for DayOfMonth (valid values 1 - 28/31): 35

参考: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#withDayOfMonth(int)



相关用法


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