1.java8中基本只能通过当前位置所在城市名来获取时区
例如:
1 2 3 4 5 6
| ZoneId defaultZone = ZoneId.systemDefault(); System.out.println(defaultZone); ZoneId america = ZoneId.of("America/New_York"); LocalDateTime shanghaiTime = LocalDateTime.now(america);
|
如果是传入时间,又该如何计算时区呢?
2.使用SimpleDateFormat 来获取Date时区
1 2
| DateFormat dateFormat = new SimpleDateFormat("Z"); System.out.println(dateFormat.format(new Date()));
|
3.使用lang3中的org.apache.commons.lang3.time函数获取
1 2 3 4
| System.out.println(DateFormatUtils.format(new Date(), "z")); System.out.println(DateFormatUtils.format(new Date(), "ZZ"));
|
4.使用日历类来计算出传入时间所在时区
1 2 3 4 5 6 7
| Calendar cal = Calendar.getInstance(); int offset = cal.get(Calendar.ZONE_OFFSET); cal.add(Calendar.MILLISECOND, -offset); Long timeStampUTC = cal.getTimeInMillis(); Long timeStamp = date.getTime(); Long timeZone = (timeStamp - timeStampUTC) / (1000 * 3600); System.out.println(timeZone.intValue());
|
暂时总结出这几种。