java.time.ZonedDateTime with()方法

java.time.ZonedDateTime.with(TemporalAdjuster adjuster)方法返回此日期时间的调整副本。

1 语法

public ZonedDateTime with(TemporalAdjuster adjuster)

2 参数

adjuster:要使用的调整器,而不是null。

3 返回值

基于此的ZonedDateTime进行调整,而不是null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.ZonedDateTime with()方法
 */
import java.time.ZonedDateTime;
import java.time.Month;
import java.time.temporal.TemporalAdjusters;

public class ZonedDateTimeDemo {
   public static void main(String[] args) {

      ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:25:38.492+05:30[Asia/Calcutta]");
      ZonedDateTime result = date.with(Month.JULY).with(TemporalAdjusters.lastDayOfMonth());
      System.out.println(result);  
   }
}

输出结果为:

2017-07-31T12:25:38.492+05:30[Asia/Calcutta]

 

热门文章

优秀文章