如何将字符串日期解析为其他时区的其他日期



鉴于我有这样的字符串日期

val date =  "2019-01-07T13:54:00+0000"

如何将此日期解析为其他时区,例如"亚洲/加尔各答"?

我正在尝试:

val zone = DateTimeZone.forID("Asia/Kolkata")
val resultMillis = ISODateTimeFormat
    .dateTimeParser()
    .withZone(zone)
    .parseDateTime(date)

但它没有奏效

这是一个两步过程:解析为字符串中的偏移量或时区,然后转换为所需的时区。我只能写Java代码,我相信你会翻译:

    DateTimeZone zone = DateTimeZone.forID("Asia/Kolkata");
    String date = "2019-01-07T13:54:00+0000";
    DateTime dt = ISODateTimeFormat.dateTimeParser()
            .parseDateTime(date)
            .withZone(zone);
    System.out.println(dt);

输出为:

2019-01-07T19:24:00.000+05:30

你快到了。我刚刚在文本上交换了对withZoneparseDateTime的调用。

我脑子里浮现出TimeZone类:

val date =  "2019-01-07T13:54:00+0000"
val zone = TimeZone.getTimeZone("Asia/Kolkata")

Calendar明白:

val calendar = Calendar.getInstance(zone)

那么SimpleDateFormat应该做:

val format = "yyyy-MM-dd'T'HH:mm:ss.SSSZ"
val simpleDateFormat = new SimpleDateFormat(format, Locale.ENGLISH);
calendar.setTime(sdf.parse(date));

相关内容

  • 没有找到相关文章

最新更新