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


Java ChronoLocalDate adjustInto()用法及代碼示例


Java中的ChronoLocalDate接口的adjustInto()方法用於將指定的時間對象調整為與該對象具有相同的日期。

用法

public Temporal adjustInto(Temporal temporal)

參數:此方法接受單個參數temporal,它是要調整的目標對象,並且不專門為null。


返回值:返回調整後的對象,不為null。

異常:該函數引發兩個異常,如下所述:

  1. DateTimeException:如果無法進行調整,程序將拋出此錯誤。
  2. ArithmeticException:如果出現數字溢出,程序將拋出此錯誤。

以下程序說明了Java中ChronoLocalDate的adjustInto()方法:

程序1

// Program to illustrate the adjustInto() method 
  
import java.util.*; 
import java.time.*; 
import java.time.chrono.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        ZonedDateTime date 
            = ZonedDateTime.now(); 
  
        // prints the date 
        System.out.println(date); 
  
        // Parses the date 
        ChronoLocalDate 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); 
    } 
}
輸出:
2019-04-28T19:58:13.775Z[Etc/UTC]
2015-01-31T19:58:13.775Z[Etc/UTC]

程序2:說明異常。下麵的程序引發異常,因為2月是28天而不是31天。

// Program to illustrate the adjustInto() method 
// Exception Program 
  
import java.util.*; 
import java.time.*; 
import java.time.chrono.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        try { 
            ZonedDateTime date 
                = ZonedDateTime.now(); 
  
            // prints the date 
            System.out.println(date); 
  
            // Parses the date 
            ChronoLocalDate 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); 
        } 
    } 
}
輸出:
2019-04-28T19:58:17.219Z[Etc/UTC]
java.time.format.DateTimeParseException: Text '2015-02-31' could not be parsed: Invalid date 'FEBRUARY 31'

參考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#adjustInto-java.time.temporal.Temporal-



相關用法


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