八、JDK1.8—新时间日期 API(java.time包)

新时间日期 API(java.time包)

使用 LocalDate、LocalTime、LocalDateTime(人读的时间)
 LocalDate、LocalTime、LocalDateTime 类的实 例是不可变的对象,是线程安全的
分别表示使用 ISO-8601日历系统的日期、时间、日期和时间。它们提供了简单的日期或时间,
并不包含当前的时间信息。也不包含与时区相关的信息。


注:ISO-8601日历系统是国际标准化组织制定的现代公民的日期和时间的表示法
Instant 时间戳(机器读的时间)
用于“时间戳”的运算。它是以Unix元年(传统 的设定为UTC时区1970年1月1日午夜时分)开始 
所经历的描述进行运算
Duration 和 Period
 Duration:用于计算两个“时间”间隔
 Period:用于计算两个“日期”间隔
日期的操
 TemporalAdjuster : 时间校正器。有时我们可能需要获 取例如:将日期调整到“下个周日”等操作。
 TemporalAdjusters : 该类通过静态方法提供了大量的常 用 TemporalAdjuster 的实现。

 

解析与格式化
java.time.format.DateTimeFormatter 类:该类提供了三种 格式化方法:
 预定义的标准格式
 语言环境相关的格式
 自定义的格式
时区的处理
 Java8 中加入了对时区的支持,带时区的时间为分别为:
 ZonedDate、ZonedTime、ZonedDateTime
 其中每个时区都对应着 ID,地区ID都为 “{区域}/{城市}”的格式
 例如 :Asia/Shanghai 等
 ZoneId:该类中包含了所有的时区信息
 getAvailableZoneIds() : 可以获取所有时区时区信息
 of(id) : 用指定的时区信息获取 ZoneId 对象

 

public class TestLocalDateTime {

	//1. LocalDate、LocalTime、LocalDateTime
	@Test
	public void test1() {
		LocalDateTime ldt = LocalDateTime.now();
		System.out.println(ldt);

		LocalDateTime ld2 = LocalDateTime.of(2016, 11, 21, 10, 10, 10);
		System.out.println(ld2);

		LocalDateTime ldt3 = ld2.plusYears(2);//加两年
		System.out.println(ldt3);

		LocalDateTime ldt4 = ld2.minusMonths(2);//减去两个月
		System.out.println(ldt4);

		System.out.println(ldt.getYear());
		System.out.println(ldt.getMonthValue());
		System.out.println(ldt.getDayOfMonth());
		System.out.println(ldt.getHour());
		System.out.println(ldt.getMinute());
		System.out.println(ldt.getSecond());
	}

	//2. Instant : 时间戳。 (使用 Unix 元年  1970年1月1日 00:00:00 所经历的毫秒值)
	@Test
	public void test2() {
		Instant ins = Instant.now();  //默认使用 UTC 时区
		System.out.println(ins);

		OffsetDateTime odt = ins.atOffset(ZoneOffset.ofHours(8));//加8个时区
		System.out.println(odt);

		System.out.println(ins.toEpochMilli());//时间戳
		System.out.println(ins.getNano());

		Instant ins2 = Instant.ofEpochSecond(5);//1970-01-01T00:00:05Z     1970-01-01T00:00:00加5秒
		System.out.println(ins2);
	}

	//3.
	//Duration : 用于计算两个“时间”间隔
	//Period : 用于计算两个“日期”间隔
	@Test
	public void test3() {
		Instant ins1 = Instant.now();

		System.out.println("--------------------");
		try {
			Thread.sleep(1000);
		} catch (InterruptedException e) {
		}

		Instant ins2 = Instant.now();

		System.out.println("所耗费时间为:" + Duration.between(ins1, ins2));

		System.out.println("----------------------------------");

		LocalDate ld1 = LocalDate.now();
		LocalDate ld2 = LocalDate.of(2011, 1, 1);

		Period pe = Period.between(ld2, ld1);
		System.out.println(pe.getYears());
		System.out.println(pe.getMonths());
		System.out.println(pe.getDays());
	}

	//4. TemporalAdjuster : 时间校正器
	@Test
	public void test4() {
		LocalDateTime ldt = LocalDateTime.now();
		System.out.println(ldt);

		LocalDateTime ldt2 = ldt.withDayOfMonth(10);//将月中的天指定为10号
		System.out.println(ldt2);

		LocalDateTime ldt3 = ldt.with(TemporalAdjusters.next(DayOfWeek.SUNDAY));//下个星期日
		System.out.println(ldt3);

		//自定义:下一个工作日
		LocalDateTime ldt5 = ldt.with((l) -> {
			LocalDateTime ldt4 = (LocalDateTime) l;

			DayOfWeek dow = ldt4.getDayOfWeek();

			if (dow.equals(DayOfWeek.FRIDAY)) {
				return ldt4.plusDays(3);
			} else if (dow.equals(DayOfWeek.SATURDAY)) {
				return ldt4.plusDays(2);
			} else {
				return ldt4.plusDays(1);
			}
		});

		System.out.println(ldt5);

	}

	//5. DateTimeFormatter : 解析和格式化日期或时间
	@Test
	public void test5() {
//		DateTimeFormatter dtf = DateTimeFormatter.ISO_LOCAL_DATE;

		DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy年MM月dd日 HH:mm:ss E");

		LocalDateTime ldt = LocalDateTime.now();
		String strDate = ldt.format(dtf);

		System.out.println(strDate);

		LocalDateTime newLdt = ldt.parse(strDate, dtf);
		System.out.println(newLdt);
	}

	@Test//获取所有时区时区信息
	public void test6() {
		Set<String> set = ZoneId.getAvailableZoneIds();
		set.forEach(System.out::println);
	}
	
	//6.ZonedDate、ZonedTime、ZonedDateTime : 带时区的时间或日期
	@Test
	public void test7(){
		LocalDateTime ldt = LocalDateTime.now(ZoneId.of("Asia/Shanghai"));
		System.out.println(ldt);
		
		ZonedDateTime zdt = ZonedDateTime.now(ZoneId.of("US/Pacific"));
		System.out.println(zdt);
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值