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


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


Java中OffsetDateTime类的adjustInto()方法将指定的时间对象调整为具有与此对象相同的日期和时间。

用法:

public Temporal adjustInto(Temporal temporal)

参数:此方法接受单个参数temporal,该参数指定要调整的目标对象,而不是null。


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

错误和异常:此方法引发两个异常,如下所述:

  • DateTimeException:如果无法进行调整。
  • ArithmeticException:如果发生数字溢出。

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

示例1:

// Java program to demonstrate the adjustInto() method 
  
import java.time.OffsetDateTime; 
import java.time.ZonedDateTime; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Current time 
        ZonedDateTime date = ZonedDateTime.now(); 
  
        // Prints the current date 
        System.out.println("Current date is: " + date); 
  
        // Parses the date 
        OffsetDateTime date1 = OffsetDateTime.parse("2018-12-12T13:30:30+05:00"); 
  
        // Function used 
        date = (ZonedDateTime)date1.adjustInto(date); 
  
        // Prints the date 
        System.out.println(date); 
    } 
}
输出:
Current date is: 2018-12-11T09:53:15.294Z[Etc/UTC]
2018-12-12T13:30:30Z[Etc/UTC]

程序2

// Java program to demonstrate the adjustInto() method 
// exceptions 
  
import java.time.OffsetDateTime; 
import java.time.ZonedDateTime; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        try { 
            // Current time 
            ZonedDateTime date = ZonedDateTime.now(); 
  
            // Prints the current date 
            System.out.println("Current date is: " + date); 
  
            // Parses the date 
            OffsetDateTime date1 = OffsetDateTime.parse("2018-13-12T13:30:30+05:00"); 
  
            // Function used 
            date = (ZonedDateTime)date1.adjustInto(date); 
  
            // Prints the date 
            System.out.println(date); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
Current date is: 2018-12-11T09:53:24.660Z[Etc/UTC]
java.time.format.DateTimeParseException: Text '2018-13-12T13:30:30+05:00' could not be parsed: Invalid value for MonthOfYear (valid values 1 - 12): 13

参考: https://docs.oracle.com/javase/8/docs/api/java/time/temporal/TemporalAdjuster.html



相关用法


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