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


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


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

用法

default Temporal adjustInto(Temporal temporal)

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


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

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

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

以下程序說明了Java中ChronoLocalDateTime的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) 
    { 
  
        LocalDateTime date 
            = LocalDateTime 
                  .parse("2018-12-06T19:21:12"); 
  
        // prints the date 
        System.out.println(date); 
  
        // Parses the date 
        ChronoLocalDateTime date1 
            = LocalDateTime.now(); 
  
        // Uses the function to adjust the date 
        date = (LocalDateTime)date1.adjustInto(date); 
  
        // Prints the adjusted date 
        System.out.println(date); 
    } 
}
輸出:
2018-12-06T19:21:12
2019-05-14T09:39:37.953

程序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 { 
  
            LocalDateTime date 
                = LocalDateTime 
                      .parse("2018-12-06T19:21:12"); 
  
            // prints the date 
            System.out.println(date); 
  
            // Parses the date 
            ChronoLocalDateTime date1 
                = LocalDateTime.parse("2015-02-31"); 
  
            // Uses the function to adjust the date 
            date = (LocalDateTime)date1.adjustInto(date); 
  
            // Prints the adjusted date 
            System.out.println(date); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
輸出:
2018-12-06T19:21:12
java.time.format.DateTimeParseException:
 Text '2015-02-31' could not be parsed at index 10

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



相關用法


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