Working with various Calendar TimeZone in Java (without using Joda Time)(在 Java 中使用各种日历时区(不使用 Joda Time))
问题描述
我正在寻找一种方法来根据用户输入获取不同时区的当前时间.我知道我可以使用 Joda Time!但这是唯一的方法吗?
I was looking for a way to get current time in various timezones based on an user input. I know I could use Joda Time! but is that the only way?
在 Java 中没有这样做的选项吗?我尝试了以下代码,它为所有 3 个系统输出提供了相同的输出.
Isn't there an option in Java for doing this? I tried the following code which gives the same output for all 3 sysouts.
Calendar pst = Calendar.getInstance(TimeZone.getTimeZone("PST"));
System.out.println("PST " + pst.getTime());
Calendar ist = Calendar.getInstance(TimeZone.getTimeZone("Asia/Calcutta"));
System.out.println("IST " + ist.getTime());
Calendar utc = Calendar.getInstance(TimeZone.getTimeZone("Etc/UTC"));
System.out.println("UCT " + utc.getTime());
我在这里缺少什么来获取其他时区的当前时间?
What am I missing here to get current time in other timezones?
推荐答案
是的,这将在每种情况下(或相隔毫秒)显示相同的值,因为三个日历都引用相同的即时 (尽管有执行时间),这就是 java.util.Date
所代表的全部内容.这是 Calendar.getTime()
的结果.
Yes, that would show the same value in every case (or milliseconds apart) because the three calendars all refer to the same instant in time (execution time notwithstanding) and that's all that a java.util.Date
represents. That's the result of Calendar.getTime()
.
但是,Calendar
本身确实知道时区,这将在您使用 Calendar.get
等时反映出来.它将也在您使用 SimpleDateFormat
时使用,您可以在其中指定特定时区.
However, the Calendar
itself does know about time zones, and that will be reflected when you use Calendar.get
etc. It will also be used when you use a SimpleDateFormat
, where you can specify a particular time zone.
// Specify whatever format you want - bear in mind different locales etc
SimpleDateFormat format = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
format.setTimeZone(calendar.getTimeZone());
String text = format.format(calendar.getTime());
目前尚不清楚您要做什么,但基本上您需要知道哪些类型是时区感知的,哪些不是.了解 java.util.Date
没有格式、日历系统或时区非常重要:它只是自 Unix 以来的毫秒数纪元.
It's not clear exactly what you're trying to do, but basically you need to be aware of which types are time zone aware, and which aren't. It's really important to understand that a java.util.Date
doesn't have a format, a calendar system or a time zone: it's just the number of milliseconds since the Unix epoch.
这篇关于在 Java 中使用各种日历时区(不使用 Joda Time)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Java 中使用各种日历时区(不使用 Joda Time)


基础教程推荐
- 不推荐使用 Api 注释的描述 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- Java Swing计时器未清除 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 从 python 访问 JVM 2022-01-01
- 大摇大摆的枚举 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01