根据用户时区进行日期转换

时间:2019-01-22 06:31:37

标签: java datetime timezone jodatime

我们正在将数据库日期转换为所需的用户时区。但是,如果我们使用jodatime格式化为字符串格式,则获取正确的日期,如果我们解析字符串以获取日期对象,则获取的时间错误。这是我的代码。我尝试了jodatime解析器和Java日期

public class Test {

    public static void main(String[] args) {
        String dateF = "01/19/2019 at 07:35 PM (UTC)";
        String dateFormat = "MM/dd/yyyy 'at' hh:mm a (zzz)";
        long time = 1603305000;
        String timeZone = "Etc/UTC";
        Locale locale=new Locale("en", "US");
        DateTimeFormatter dateFormatter = null;

        if (locale.equals(Locale.FRENCH)) {
            dateFormatter = DateTimeFormat.forPattern(dateFormat).withLocale(locale);
        } else {
            dateFormatter = DateTimeFormat.forPattern(dateFormat).withLocale(null);

        }

        if (true) {
            dateFormatter = dateFormatter.withZone(DateTimeZone.forID(timeZone));
        }
        // Old Logic using Java Time
        DateFormat format3 = new SimpleDateFormat(dateFormat, locale);
        Calendar calendar = Calendar.getInstance();
        calendar.setTimeInMillis(time);
        if(true)
            format3.setTimeZone(TimeZone.getTimeZone(timeZone));

        DateTime jodatime = new DateTime(time);
        try {
            System.out.println(dateFormatter.print(jodatime));
            System.out.println("timezone converted Date : " + format3.parse(dateFormatter.print(jodatime)));

            System.out.println("dateFormatter.parseDateTime converted Date : " + dateFormatter.parseDateTime(dateFormatter.print(jodatime)).toDate());
        } catch (Exception e) {
            System.out.println(e);
        }
    }
}

在格式字符串01/19/1970 at 01:21 PM (UTC)中更正日期

我们在解析后得到了错误的结果 时区转换日期:Mon Jan 19 18:51:00 IST 1970

dateFormatter.parseDateTime转换日期:Mon Jan 19 18:51:00 IST 1970

以格式化日期更正日期:Mon Jan 19 01:21:00 UTC 1970

1 个答案:

答案 0 :(得分:2)

避免使用旧的日期时间类

您正在使用与最早的Java版本捆绑在一起的可怕的旧类。这些已被现代的 java.time 类完全取代。

您显然还将这些遗留类与 Joda-Time 库中的类混合在一起。首先,这种混合是不明智的。其次,Joda-Time现在处于维护模式,其创建者建议迁移到 java.time 。实际上, Joda-Time java.time 项目都是由同一个人Stephen Colebourne领导的,第一个项目是第二个项目的灵感和教育。 / p>

智能对象,而不是哑字符串

  

我们正在转换数据库日期

然后避免您正在执行的所有字符串操作。

从JDBC 4.2开始,您可以直接与数据库交换 java.time 对象。暂时,使用类似于OffsetDateTime类的方法,即表示类似于SQL标准TIMESTAMP WITH TIME ZONE的类型的列。

myPreparedStatement.setObject( … , myOffsetDateTime ) ;

…和…

OffsetDateTime odt = myResultSet.getObject( … , OffsetDateTime.class ) ;

大多数数据库都将时刻存储在UTC中。您可能需要调整到一个时区以向用户展示。应用ZoneId获得一个ZonedDateTime对象。

ZoneId z = ZoneId.of( "Asia/Kolkata" ) ;
ZonedDateTime zdt = odt.atZoneSameInstant( z ) ;

使用DateTimeFormatter对象以某种格式生成文本。指定自定义格式设置模式或通过调用ofLocalized…方法自动进行本地化。

所有这些已经在Stack Overflow上讨论了很多遍。搜索以了解更多信息。


关于 java.time

java.time框架已内置在Java 8及更高版本中。这些类取代了麻烦的旧legacy日期时间类,例如java.util.DateCalendarSimpleDateFormat

目前位于Joda-Timemaintenance mode项目建议迁移到java.time类。

要了解更多信息,请参见Oracle Tutorial。并在Stack Overflow中搜索许多示例和说明。规格为JSR 310

您可以直接与数据库交换 java.time 对象。使用符合JDBC driver或更高版本的JDBC 4.2。不需要字符串,不需要java.sql.*类。

在哪里获取java.time类?

ThreeTen-Extra项目使用其他类扩展了java.time。该项目为将来可能在java.time中添加内容提供了一个试验场。您可能会在这里找到一些有用的类,例如IntervalYearWeekYearQuartermore