鉴于我有这样的字符串日期
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
你快到了。我刚刚在文本上交换了对withZone
和parseDateTime
的调用。
我脑子里浮现出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));