Java ChronoZonedDateTime with(TemporalField, long)方法及实例

Java ChronoZonedDateTime with(TemporalField, long)方法及实例

ChronoZonedDateTime 接口的 with(TemporalField field, long newValue) 方法用于将ChronoZonedDateTime的指定字段设置为一个新值,并返回新时间的副本。这个方法可以用来改变任何支持的字段,如年、日、月、小时、分钟或秒。如果由于该字段不被支持或其他原因而无法设置新值,则会抛出一个异常。ChronoZonedDateTime的这个实例是不可改变的,不受这个方法调用的影响。

语法

ChronoZonedDateTime with(TemporalField field, 
                         long newValue)

参数: 该方法接受两个参数。

  • field ,它是要在结果中设置的字段,以及
  • newValue ,这是结果中该字段的新值,作为参数。

返回值: 该方法返回一个基于指定字段设置的 ChronoZonedDateTime

异常: 该方法会抛出以下异常。

  • DateTimeException – 如果不能进行调整。
  • UnsupportedTemporalTypeException – 如果该字段不被支持。
  • ArithmeticException – 如果发生数字溢出。

下面的程序说明了with()方法。

程序1 :

// Java program to demonstrate
// ChronoZonedDateTime.with() method
  
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create ChronoZonedDateTime object
        ChronoZonedDateTime time
            = ZonedDateTime
                  .parse(
                      "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
  
        // print instance
        System.out.println("ChronoZonedDateTime before"
                           + " adjustment: "
                           + time);
  
        // apply with method of ChronoZonedDateTime
        ChronoZonedDateTime updatedlocal
            = time.with(ChronoField.YEAR, 2017);
  
        // print instance
        System.out.println("ChronoZonedDateTime after"
                           + " adjustment: "
                           + updatedlocal);
    }
}

输出:

ChronoZonedDateTime before adjustment: 2018-12-06T19:21:12.123+05:30[Asia/Calcutta]
ChronoZonedDateTime after adjustment: 2017-12-06T19:21:12.123+05:30[Asia/Calcutta]

程序2

// Java program to demonstrate
// ChronoZonedDateTime.with() method
  
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create ChronoZonedDateTime object
        ChronoZonedDateTime time
            = ZonedDateTime
                  .parse(
                      "1918-10-25T23:12:38.543+02:00[Europe/Paris]");
  
        // print instance
        System.out.println("ChronoZonedDateTime before"
                           + " adjustment: "
                           + time);
  
        // apply with method of ChronoZonedDateTime
        ChronoZonedDateTime updatedlocal
            = time.with(ChronoField.MONTH_OF_YEAR, 1);
  
        // print instance
        System.out.println("ChronoZonedDateTime after"
                           + " adjustment: "
                           + updatedlocal);
    }
}

输出:

ChronoZonedDateTime before adjustment: 1918-10-25T23:12:38.543Z[Europe/Paris]
ChronoZonedDateTime after adjustment: 1918-01-25T23:12:38.543Z[Europe/Paris]

参考资料: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoZonedDateTime.html#with-java.time.temporal.TemporalField-long-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Java ChronoZonedDateTime