English 中文(简体)
如何将时间印在 IST 上?
原标题:How to get time printed in IST?

我可以得到的时间和时区目前, 但它总是打印在

Wed May 23 11:01:08 GMT+05:30 2012

作为时区,我正在获取 GMT+05:30 。 我要打印 IST

我试过了

 SimpleDateFormat sd = new SimpleDateFormat("yyyy.MM.dd G  at  HH:mm:ss z");

不过,我仍然得到 GMT+05:30

TimeZone.getDefault().getDisplayName(true, TimeZone.SHORT); is also givine me GMT+05:30

There are various things 我试过了 but did not get the desired output. I have used Calender but still unable to print IST.

请让我知道如何在时间上打印 IST (即使我不想打印 Indian标准时间 )

最佳回答

您尚未显示您实际使用 < / em > 的 < code> SopyDateFormat 的位置。 这里有一个简短但完整的示例, 即 < em> does 显示 IST :

import java.text.*;
import java.util.*;

class Test {
    public static void main(String[] args) {
        SimpleDateFormat sd = new SimpleDateFormat(
            "yyyy.MM.dd G  at  HH:mm:ss z");
        Date date = new Date();
        // TODO: Avoid using the abbreviations when fetching time zones.
        // Use the full Olson zone ID instead.
        sd.setTimeZone(TimeZone.getTimeZone("IST"));
        System.out.println(sd.format(date));
   }
}

我的机器上的输出 :

2012.05.23 AD at 11:18:08 IST

请注意,如果 TimeZone.getDefault () 没有显示“ IST ”, 那么问题可能是:

  • That the system can t actually identify your system time zone
  • That your Java installation doesn t have full time zone information regarding i18n

你用哪个版本的爪哇, 在哪个平台上?

问题回答

java.time

所接受的回答使用了传统日期和格式化的API,这是2012年正确的做法。2014年3月,modern Date-Time API 取代了传统日期和时间的API。此后,强烈建议转换为java.time ,即现代日期和时间的API。

除了远离遗留的日期时间和格式化 API, 人们也应避免使用两个/ 三个字母的时区代号。 以下是官方网站< a href=" https://docs. oracle.com/javase/8/docs/ api/java/ util/TimeZone. html" rel="nofollow noreferrer" 的文件摘要 :

Three-letter time zone IDs

For compatibility with JDK 1.1.x, some other three-letter time zone IDs (such as "PST", "CTT", "AST") are also supported. However, their use is deprecated because the same abbreviation is often used for multiple time zones (for example, "CST" could be U.S. "Central Standard Time" and "China Standard Time"), and the Java platform can then only recognize one of them.

时区标识通常以区域/城市表示,例如亚洲/科卡塔。请查此页

现代日期- 时间 API 提供一个 < a href=" https://docs.oracle.com/javase/8/docs/api/java/time/ ZonedDateTime.html" rel= “ no follown noreferr" codeonedDateTime 类, 包含关于时区和区间偏移的信息。 有关这一类的最好的事情是它按照 < a href=> https://en.wikipedia.org/wiki/ Daylight_ saving_time" rel= “ nofolvection noreferr" > DST < /a > 自动调整区域偏移。

< 强度 > Demo :

public class Main {
    public static void main(String[] args) {
        var zoneId = ZoneId.of("Asia/Kolkata");

        // Current time in India
        var now = ZonedDateTime.now(zoneId);
        System.out.println(now);

        // ###### Print the ZonedDateTime in custom formats ######

        var formatter1 = DateTimeFormatter.ofPattern("uuuu.MM.dd G  at  HH:mm:ss z", Locale.ENGLISH);
        String strDateTimeCustomFormat = now.format(formatter1);
        System.out.println(strDateTimeCustomFormat);

        var formatter2 = DateTimeFormatter.ofPattern("uuuu.MM.dd G  at  HH:mm:ss VV", Locale.ENGLISH);
        strDateTimeCustomFormat = now.format(formatter2);
        System.out.println(strDateTimeCustomFormat);
    }
}

样本运行 < 强 > 输出 < 强 > :

2024-03-02T22:27:55.546343100+05:30[Asia/Kolkata]
2024.03.02 AD at 22:27:55 IST
2024.03.02 AD at 22:27:55 Asia/Kolkata

Online Demo

有关现代日期- 时间 API 的学习,请访问Trail:Date time

这是一个老问题。 但是,它可能有助于新的爪哇数据/时间 API, 因为其他答案使用旧的答案 。

可以使用 ZonedDateTime 打印所要求的格式的数据/时间。 举例来说, 使用给定的模式 。

ZonedDateTime.now(ZoneId.of(ZoneId.SHORT_IDS.get("IST"))).format(DateTimeFormatter.ofPattern("yyyy.MM.dd G  at  HH:mm:ss z"))

您先根据 IST 区创建日期/ 时间实例。 然后, 您会用给定模式调用格式函数, 打印日期/ 时间, 以理想格式打印 。

它将结果印成 IST :

jshell> ZonedDateTime.now(ZoneId.of(ZoneId.SHORT_IDS.get("IST"))).format(DateTimeFormatter.ofPattern("yyyy.MM.dd G  at  HH:mm:ss z"))
$10 ==> "2023.10.29 AD at 20:19:38 IST"

似乎您有错误的时间区设置。 以下代码将打印 < code> 2012. 05. 23 AD 于 11: 30: 20 IST

TimeZone.setDefault(TimeZone.getTimeZone("IST"));
SimpleDateFormat f = new SimpleDateFormat("yyyy.MM.dd G  at  HH:mm:ss z");
System.out.println(f.format(new Date()));

但是,如果我使用 TimeZone.setDefault(TimeZone.getTimeZone ("GMT+05:30")) ;

2012.05.23AD,11:30:20 GMT+05:30

进来的东西,出来的东西都一样。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签