TimeZone.getTimeZone(“CST”)返回GMT

时间:2013-06-21 19:18:45

标签: java android timezone

我正在将时间从CST转换为当地时间,但getTimeZone似乎无法正常工作。

    String cstTime = "2013-06-21 14:00:00";

    SimpleDateFormat simpleDateFormat = new SimpleDateFormat(
            "yyyy-MM-dd HH:mm:ss");
    simpleDateFormat.setTimeZone(TimeZone.getTimeZone("CST"));

    Date date = null;
    try {
        date = simpleDateFormat.parse(cstTime);
    } catch (ParseException e) {
        System.out.println("Parse time error");
        e.printStackTrace();
    }

    TimeZone destTz = TimeZone.getDefault();//here I should get EDT on my phone
    simpleDateFormat.setTimeZone(destTz);
    String convertedLocalTime = simpleDateFormat.format(date);

    //the converted time I get is  "2013-06-21 10:00:00" 
    //but it should be             "2013-06-21 15:00:00" 

似乎是使用GMT而不是CST,以下是我在调试时得到的:

String abc = TimeZone.getTimeZone("CST").toString();
System.out.println("CST:"+abc);
Output:
I/System.out(19404): CST:java.util.SimpleTimeZone[id=GMT,offset=0,dstSavings=3600000,
useDaylight=fals‌​e,startYear=0,startMode=0,startMonth=0,startDay=0,startDayOfWeek=0,
startTime=0,en‌​dMode=0,endMonth=0,endDay=0,endDayOfWeek=0,endTime=0]

是否使用GMT?为什么.. 提前谢谢!

编辑:

最后通过使用

使其工作
simpleDateFormat.setTimeZone(TimeZone.getTimeZone( "GMT-5")); //GMT-5 is for CDT, I found my server is actually using CDT not CST

仍然不知道为什么使用字符串“CST”无法正常工作......

6 个答案:

答案 0 :(得分:9)

来自getTimeZone的javadoc:

Returns a TimeZone corresponding to the given id, or GMT for unknown ids. 

An ID can be an Olson name of the form Area/Location, such as America/Los_Angeles. 
The getAvailableIDs() method returns the supported names. 

尝试使用getAvailableIDs?

答案 1 :(得分:3)

您可以使用“CST6CDT”时区,当中央夏令时(CDT)切换回CST时,它会自动为您提供正确的时间,反之亦然。

答案 2 :(得分:2)

以下代码帮助了我。

TimeZone tzone = TimeZone.getTimeZone("Singapore");
// set time zone to default
tzone.setDefault(tzone);

答案 3 :(得分:1)

对于任何日期时间转换我会建议使用JODA日期时间,它帮我解决了一堆日期时间问题。

您可以使用时区初始化日期,并可以非常轻松地在它们之间进行转换

DateTimeZone zone = DateTimeZone.forID("Europe/London");

DateTimeZone zoneUTC = DateTimeZone.UTC;

来自JODA DATE TIME API

DateTime(DateTimeZone zone)
Constructs an instance set to the current system millisecond time using ISOChronology in the specified time zone.

答案 4 :(得分:1)

以下似乎对我有用,因为面临类似的问题:

Calendar c = Calendar.getInstance(TimeZone.getTimeZone("America/Chicago"));

答案 5 :(得分:0)

我发现有一件事是Java的TimeZone无法识别“+09:00”,但它确实识别出“GMT + 09:00”和“GMT + 0900”。