Перенести часовой пояс в DateTimeZone

Я экспериментирую со временем Joda.

    final String string_from_3rd_party = "GMT+08:00";
    // Works for standard Java TimeZone!
    System.out.println(TimeZone.getTimeZone(string_from_3rd_party));
    // Exception in thread "main" java.lang.IllegalArgumentException: The datetime zone id is not recognised: GMT+08:00
    System.out.println(DateTimeZone.forID(string_from_3rd_party));

Как я могу сохранить string_from_3rd_party , но при этом создать из него Joda DateTimeZone ?

9
задан Cheok Yan Cheng 30 October 2010 в 08:00
поделиться