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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。