Java LocalDateTime
时间: 2023-10-26 21:28:13 浏览: 79
java8 LocalDate LocalDateTime等时间类用法实例分析
5星 · 资源好评率100%
LocalDateTime是Java 8中引入的新的日期时间API,用于表示不带时区的日期和时间。它提供了更加直观和易用的日期时间操作方法,相比之前的Date和Calendar类,使用起来更加方便。
LocalDateTime的主要特点如下:
1. 不可变:LocalDateTime、LocalDate、LocalTime都是不可变对象,修改这些对象会返回一个新的副本,而不是在原对象上修改。
2. 带时区信息:LocalDateTime包含了年、月、日、时、分、秒、纳秒等信息,同时还带有时区信息,可以精确到毫秒级别。
3. 日期时间转换:LocalDateTime提供了丰富的方法来进行日期时间的转换,例如将LocalDateTime转换为Date、String等。
4. 日期时间操作:LocalDateTime提供了丰富的方法来进行日期时间的加减操作,例如加上或减去天数、小时数、分钟数等。
以下是一些常用的LocalDateTime操作示例:
```java
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class LocalDateTimeDemo {
public static void main(String[] args) {
// 获取当前时间
LocalDateTime now = LocalDateTime.now();
System.out.println("当前时间:" + now);
// 格式化时间
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); String formattedNow = now.format(formatter);
System.out.println("格式化后的时间:" + formattedNow);
// 日期时间加减操作
LocalDateTime tomorrow = now.plusDays(1);
System.out.println("明天的时间:" + tomorrow);
LocalDateTime yesterday = now.minusDays(1);
System.out.println("昨天的时间:" + yesterday);
LocalDateTime sameDay = now.withHour(12).withMinute(0).withSecond(0);
System.out.println("中午12点整的时间:" + sameDay);
}
}
```<span class="em">1</span><span class="em">2</span><span class="em">3</span><span class="em">4</span>
阅读全文