作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
interface SomeDataClass {
TemporalAccessor getSomeTime();
}
//somewhere in the impl...
public TemporalAccessor getSomeTime() {
return OffsetDateTime.from(dateTimeFormatter.parse(someDateInstring));
}
有谁知道如何从这个 TemporalAccessor
接口(interface)获取时区数据?
最佳答案
如果您需要 ZoneOffset
或 ZoneId
,您可以从 TemporalAccessor
创建它:
TemporalAccessor acc = ZonedDateTime.now();
System.out.println(ZoneOffset.from(acc));
System.out.println(ZoneId.from(acc));
关于java - 如何从 Temporal 获取 TimeZone?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32244657/
我是一名优秀的程序员,十分优秀!