📌  相关文章
📜  Java中的 OffsetDateTime withHour() 方法及示例

📅  最后修改于: 2022-05-13 01:54:59.801000             🧑  作者: Mango

Java中的 OffsetDateTime withHour() 方法及示例

Java中 OffsetDateTime 类的withHour()方法返回此 OffsetDateTime 的副本,其中一天中的小时按照参数中指定的方式更改。

句法:

public OffsetDateTime withHour(int hour)

参数:此方法接受单个参数小时,它指定要在结果中设置的一天中的小时,范围可以从 0 到 23。

返回值:它基于此日期返回一个 OffsetDateTime,其中包含请求的一天中的小时,并且不为空。

异常:当一天中的小时值无效或一年中的某一天无效时,程序会抛出DateTimeException

下面的程序说明了withHour()方法:

方案一:

// Java program to demonstrate the withHour() method
  
import java.time.OffsetDateTime;
import java.time.ZonedDateTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Parses the date1
        OffsetDateTime date1
            = OffsetDateTime
                  .parse(
                      "2018-12-12T13:30:30+05:00");
  
        // Prints dates
        System.out.println("Date1: " + date1);
  
        // Changes the hour of day
        System.out.println("Date1 after altering hour of the day: "
                           + date1.withHour(20));
    }
}
输出:
Date1: 2018-12-12T13:30:30+05:00
Date1 after altering hour of the day: 2018-12-12T20:30:30+05:00

方案二:

// Java program to demonstrate the withHour() method
  
import java.time.OffsetDateTime;
  
public class GFG {
    public static void main(String[] args)
    {
        try {
            // Parses the date1
            OffsetDateTime date1
                = OffsetDateTime
                      .parse(
                          "2018-12-12T13:30:30+05:00");
  
            // Prints dates
            System.out.println("Date1: " + date1);
  
            // Changes the hour of day
            System.out.println("Date1 after altering hour of the day: "
                               + date1.withHour(27));
        }
        catch (Exception e) {
            System.out.println("Exception: " + e);
        }
    }
}
输出:
Date1: 2018-12-12T13:30:30+05:00
Exception: java.time.DateTimeException:
           Invalid value for HourOfDay (valid values 0 - 23): 27

参考:https: Java/time/OffsetDateTime.html#withHour(int)