Java 与 IST 的奇怪行为

  • 本文关键字:IST Java java timezone
  • 更新时间 :
  • 英文 :


我有以下代码:

DateFormat df = new SimpleDateFormat("M/d/yy h:mm a z");
df.setLenient(false);
System.out.println(df.parse("6/29/2012 5:15 PM IST"));

假设我现在将PC的时区设置为太平洋时间(太平洋夏令时为UTC-7),这将打印

2012 年 6 月 29 日星期五 08:15:00 PDT

PDT 不是比 IST(印度标准时间)晚 12.5 小时吗?任何其他时区都不会发生此问题 - 我在日期字符串中尝试了 UTC、PKT、MMT 等而不是 IST。Java 中有两个 IST 吗?

PS:实际代码中的日期字符串来自外部来源,所以我不能使用 GMT 偏移量或任何其他时区格式。

时区的缩写名称不明确,并且已弃用时区的 Olson 名称。以下内容始终如一,因为 parse() 和 getTimezone() 的行为方式可能存在差异。

SimpleDateFormat sdf = new SimpleDateFormat("M/d/yy h:mm a Z");
TimeZone istTimeZone = TimeZone.getTimeZone("Asia/Kolkata");
Date d = new Date();
sdf.setTimeZone(istTimeZone);
String strtime = sdf.format(d);

抱歉,我必须为此写一个答案,但请尝试以下代码:

public class Test {
    public static void main(String[] args) throws ParseException {
        DF df = new DF("M/d/yy h:mm a z");
        String [][] zs = df.getDateFormatSymbols().getZoneStrings();
        for( String [] z : zs ) {
            System.out.println( Arrays.toString( z ) );
        }
    }
    private static class DF extends SimpleDateFormat {
        @Override
        public DateFormatSymbols getDateFormatSymbols() {
            return super.getDateFormatSymbols();
        }
        public DF(String pattern) {
            super(pattern);
        }
    }
}

您会发现 IST 在列表中出现了几次,第一个确实是以色列标准时间。

不是答案,但请参阅下面的输出 + 代码 - 似乎parse对待 IST 的方式与TimeZone.getTimeZone("IST")不同......

2012
年6月29日星期五 16:15:00 BST 2012年6月29日星期五 12
:45:00 BST 2012年6月29日星期五 12
:45:00 BST *BST = 伦敦

public static void main(String[] args) throws InterruptedException, ParseException {
    DateFormat fmt1 = new SimpleDateFormat("M/d/yy h:mm a Z");
    Date date = fmt1.parse("6/29/2012 5:15 PM IST");
    System.out.println(date);
    DateFormat fmt2 = new SimpleDateFormat("M/d/yy h:mm a");
    fmt2.setTimeZone(TimeZone.getTimeZone("IST"));
    System.out.println(fmt2.parse("6/29/2012 5:15 PM"));
    DateFormat fmt3 = new SimpleDateFormat("M/d/yy h:mm a");
    fmt3.setTimeZone(TimeZone.getTimeZone("Asia/Kolkata"));
    System.out.println(fmt3.parse("6/29/2012 5:15 PM"));
}

这是因为IST将具有多种含义,如爱尔兰标准时间,Isreal Standrad时间,印度标准时间。

参考: https://www.timeanddate.com/time/zones/

专门使用 setTimezone() 方法来设置时区。

例如:parser.setTimeZone(TimeZone.getTimeZone("在此处详细指定时区"));

相关内容

  • 没有找到相关文章

最新更新