java.time.LocalDateTime withNano()方法
java.time.LocalDateTime.withNano(int nanoseconds) 方法返回与LocalDateTime改变了纳秒的副本。
1 语法
public LocalDateTime withNano(int nanoseconds)
2 参数
nanoseconds:要在结果中设置的纳秒,从0到999,999,999。
3 返回值
基于此日期的LocalDateTime,具有请求的纳秒,不为null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.LocalDateTime withNano()方法
*/
import java.time.LocalDateTime;
public class LocalDateTimeDemo {
public static void main(String[] args) {
LocalDateTime date = LocalDateTime.parse("2017-01-03T10:15:30");
LocalDateTime result = date.withNano(50000);
System.out.println(result);
}
}
输出结果为:
2017-01-03T10:15:30.000050
热门文章
优秀文章