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


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


Java中的LocalDate类的adjustInto()方法用于将指定的时间对象调整为与该对象具有相同的日期。

用法

public Temporal adjustInto(Temporal temporal)

参数:此方法接受单个参数temporal,它是要调整的目标对象,并且不专门为null。


返回值:返回调整后的对象,不为null。

异常:该函数引发两个异常,如下所述:

  1. DateTimeException:如果无法进行调整,程序将抛出此错误。
  2. ArithmeticException:如果出现数字溢出,程序将抛出此错误。

以下示例程序旨在说明Java中LocalDate的adjustInto()方法:

程序1

// Program to illustrate the adjustInto() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        ZonedDateTime date = ZonedDateTime.now(); 
  
        // prints the date 
        System.out.println(date); 
  
        // Parses the date 
        LocalDate date1 = LocalDate.parse("2015-01-31"); 
  
        // Uses the function to adjust the date 
        date = (ZonedDateTime)date1.adjustInto(date); 
  
        // Prints the adjusted date 
        System.out.println(date); 
    } 
}
输出:
2018-11-28T05:36:08.205Z[Etc/UTC]
2015-01-31T05:36:08.205Z[Etc/UTC]

程序2:说明异常。下面的程序引发异常,因为2月是28天而不是31天。

// Program to illustrate the adjustInto() method 
// Exception Program 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        try { 
            ZonedDateTime date = ZonedDateTime.now(); 
  
            // prints the date 
            System.out.println(date); 
  
            // Parses the date 
            LocalDate date1 = LocalDate.parse("2015-02-31"); 
  
            // Uses the function to adjust the date 
            date = (ZonedDateTime)date1.adjustInto(date); 
  
            // Prints the adjusted date 
            System.out.println(date); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
2018-11-28T05:36:11.014Z[Etc/UTC]
java.time.format.DateTimeParseException: 
Text '2015-02-31' could not be parsed: Invalid date 'FEBRUARY 31'

参考: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#adjustInto(java.time.temporal.Temporal)



相关用法


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