Java中的 ZonedDateTime withNano() 方法及示例
ZonedDateTime类的withNano()方法,用于更改此 ZonedDateTime 中的纳秒,并在此操作后返回 ZonedDateTime 的副本。此方法在本地时间线上操作,更改本地日期时间和之后的时间此操作将本地日期时间转换回 ZonedDateTime,使用区域 ID 获取偏移量。转换回 ZonedDateTime 时,如果本地日期时间重叠,则尽可能保留偏移量,否则将使用较早的偏移量。此实例是不可变的,不受此方法调用的影响。
句法:
public ZonedDateTime withNano(int nanoOfSecond)
参数:此方法接受单个参数nanoOfSecond ,它表示要在结果中设置的纳秒,0 到 999、999、999。
返回值:此方法基于此日期时间与请求的 nanoOfSecond 返回ZonedDateTime 。
异常:如果 nanoOfSecond 值无效,此方法将引发DateTimeException 。
下面的程序说明了 withNano() 方法:
方案一:
// Java program to demonstrate
// ZonedDateTime.withNano() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a ZonedDateTime object
ZonedDateTime zoneddatetime
= ZonedDateTime.parse(
"2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
// print instance
System.out.println("ZonedDateTime before"
+ " alter nanoOfSecond: "
+ zoneddatetime);
// alter nanoOfSecond to 12345987
ZonedDateTime returnvalue
= zoneddatetime.withNano(12345987);
// print result
System.out.println("ZonedDateTime after "
+ "alter nanoOfSecond: "
+ returnvalue);
}
}
ZonedDateTime before alter nanoOfSecond: 2018-12-06T19:21:12.123+05:30[Asia/Calcutta]
ZonedDateTime after alter nanoOfSecond: 2018-12-06T19:21:12.012345987+05:30[Asia/Calcutta]
方案二:
// Java program to demonstrate
// ZonedDateTime.withNano() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a ZonedDateTime object
ZonedDateTime zoneddatetime
= ZonedDateTime.parse(
"2018-10-25T23:12:31.123+02:00[Europe/Paris]");
// print instance
System.out.println("ZonedDateTime before"
+ " alter nanoOfSecond: "
+ zoneddatetime);
// alter nanoOfSecond to 439990000
ZonedDateTime returnvalue
= zoneddatetime.withNano(439990000);
// print result
System.out.println("ZonedDateTime after "
+ "alter nanoOfSecond: "
+ returnvalue);
}
}
ZonedDateTime before alter nanoOfSecond: 2018-10-25T23:12:31.123+02:00[Europe/Paris]
ZonedDateTime after alter nanoOfSecond: 2018-10-25T23:12:31.439990+02:00[Europe/Paris]
参考: https: Java/time/ZonedDateTime.html#withNano(int)