将字符串转换为java.util.TimeZone

huangapple go评论67阅读模式
英文:

Convert String to java.util.TimeZone

问题

目前,我正在获取字符串中的时区。如何将其转换回时区?

String timeZone = "Europe/Berlin";

如何将其转换为 `java.util.TimeZone`:
```java
java.util.TimeZone timeZoneObject = java.util.TimeZone.getTimeZone(timeZone);
英文:

Currently, I am getting TimeZone in String. How can I convert it back to TimeZone ??

String timeZone = "Europe/Berlin"

How can I cast this to java.util.TimeZone

答案1

得分: 2

通过使用getTimeZone静态方法

java.util.TimeZone.getTimeZone("Europe/Berlin")
英文:

By using the getTimeZone static method:

java.util.TimeZone.getTimeZone("Europe/Berlin")

huangapple
  • 本文由 发表于 2020年10月19日 15:55:22
  • 转载请务必保留本文链接:https://go.coder-hub.com/64423246.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定