使用时区将字符串转换为日期

时间:2010-11-17 11:03:23

标签: java date timezone format

我的模式是yyyy-MM-dd hh:mm a 我可以单独获取时区对象,其中上面的字符串代表日期。

我想将其转换为以下格式。 yyyy-MM-dd HH:mm:ss Z

我该怎么做?

5 个答案:

答案 0 :(得分:21)

您可以将SimpleDateFormatyyyy-MM-dd HH:mm:ss一起使用并明确设置TimeZone

public static Date getSomeDate(final String str, final TimeZone tz)
    throws ParseException {
  final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm a");
  sdf.setTimeZone(tz);
  return sdf.parse(str);
}

/**
 * @param args
 * @throws IOException
 * @throws InterruptedException
 * @throws ParseException
 */
public static void main(final String[] args) throws ParseException {
  final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z");
  System.out.println(sdf.format(getSomeDate(
      "2010-11-17 01:12 pm", TimeZone.getTimeZone("Europe/Berlin"))));
  System.out.println(sdf.format(getSomeDate(
      "2010-11-17 01:12 pm", TimeZone.getTimeZone("America/Chicago"))));
}

打印出来:

  

2010-11-17 13:12:00 +0100

     

2010-11-17 20:12:00 +0100

更新2010-12-01: 如果要显式打印出特殊的TimeZone,请在SimpleDateFormat中设置它:

sdf.setTimeZone(TimeZone .getTimeZone("IST")); 
System.out.println(sdf.format(getSomeDate(
    "2010-11-17 01:12 pm", TimeZone.getTimeZone("IST"))));

打印2010-11-17 13:12:00 +0530

答案 1 :(得分:9)

TL;博士

LocalDateTime.parse(                        // Parse string as value without time zone and without offset-from-UTC.
    "2017-01-23 12:34 PM" , 
    DateTimeFormatter.ofPattern( "uuuu-MM-dd hh:mm a" )
)                                           // Returns a `LocalDateTime` object.
.atZone( ZoneId.of( "America/Montreal" ) )  // Assign time zone, to determine a moment. Returns a `ZonedDateTime` object.
.toInstant()                                // Adjusts from zone to UTC.
.toString()                                 // Generate string: 2017-01-23T17:34:00Z
.replace( "T" , " " )                       // Substitute SPACE for 'T' in middle.
.replace( "Z" , " Z" )                      // Insert SPACE before 'Z'.

避免遗留日期时间类

其他答案使用麻烦的旧日期时间类(DateCalendar等),现在是遗留的,取而代之的是java.time类。

LocalDateTime

  

我的模式是yyyy-MM-dd hh:mm a

这样的输入字符串没有任何偏离UTC或时区的指示。所以我们解析为LocalDateTime

定义格式设置模式以使您的输入与DateTimeFormatter对象匹配。

String input = "2017-01-23 12:34 PM" ;
DateTimeFormatter f = DateTimeFormatter.ofPattern( "uuuu-MM-dd hh:mm a" );
LocalDateTime ldt = LocalDateTime.parse( input , f );
  

ldt.toString():2017-01-23T12:34

请注意,LocalDateTime 不是特定时刻,只是对一系列可能时刻的模糊概念。例如,法国巴黎午夜过后几分钟,加拿大蒙特利尔仍然是“昨天”。因此,如果没有Europe/ParisAmerica/Montreal等时区的上下文,只说“午夜后几分钟”就没有意义了。

ZoneId

  

我可以单独获取时区对象,其中上面的字符串代表日期。

时区由ZoneId类表示。

continent/region的格式指定proper time zone name,例如America/MontrealAfrica/CasablancaPacific/Auckland。切勿使用诸如ESTIST之类的3-4字母缩写,因为它们不是真正的时区,不是标准化的,甚至不是唯一的(!)。

ZoneId z = ZoneId.of( "America/Montreal" );

ZonedDateTime

应用ZoneId获取ZonedDateTime,这确实是时间轴上的一个点,也就是历史上的特定时刻。

ZonedDateTime zdt = ldt.atZone( z );
  

zdt.toString():2017-01-23T12:34-05:00 [美国/蒙特利尔]

Instant

  

我想将其转换为以下格式。 yyyy-MM-dd HH:mm:ss Z

首先,要知道Z文字字符是Zulu的缩写,意味着UTC。换句话说,offset-from-UTC零时,+00:00

Instant类代表UTC中时间轴上的一个时刻,分辨率为nanoseconds(小数部分最多九(9)位)。

您可以从Instant中提取ZonedDateTime个对象。

Instant instant = zdt.toInstant();  // Extracting the same moment but in UTC.

要生成标准ISO 8601格式的字符串,例如2017-01-22T18:21:13.354Z,请致电toString。标准格式没有空格,使用T将年 - 月 - 日与年 - 小时 - 秒分开,并将Z规范地附加到零偏移。

String output = instant.toString();
  

instant.toString():2017-01-23T17:34:00Z

我强烈建议尽可能使用标准格式。如果您坚持使用所述格式的空格,请在DateTimeFormatter对象中定义自己的格式模式,或者只对Instant::toString的输出执行字符串操作。

String output = instant.toString()
                       .replace( "T" , " " )  // Substitute SPACE for T.
                       .replace( "Z" , " Z" ); // Insert SPACE before Z.
  

输出:2017-01-23 17:34:00 Z

试试这个code live at IdeOne.com

关于java.time

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

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

要了解详情,请参阅Oracle Tutorial。并搜索Stack Overflow以获取许多示例和解释。规范是JSR 310

从哪里获取java.time类?

ThreeTen-Extra项目使用其他类扩展java.time。该项目是未来可能添加到java.time的试验场。您可以在此处找到一些有用的课程,例如IntervalYearWeekYearQuartermore

答案 2 :(得分:5)

使用SimpleDateFormat

String string1 = "2009-10-10 12:12:12 ";
SimpleDateFormat sdf =  new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z")
sdf.setTimeZone(tz);
Date date = sdf.parse(string1);

答案 3 :(得分:0)

使用您的日期模式创建SimpleDateFormat的新实例。之后,您可以调用它的解析方法将日期字符串转换为 java.util.Date 对象。

答案 4 :(得分:0)

毫无疑问,通常使用的格式为2014-10-05T15:23:01Z(TZ)

为此必须使用此代码

SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ");
String dateInString = "2014-10-05T15:23:01Z";

 try {

     Date date = formatter.parse(dateInString.replaceAll("Z$", "+0000"));
     System.out.println(date);

 } catch (ParseException e) {
     e.printStackTrace();
 }

它的输出将是Sun Oct 05 20:53:01 IST 2014

然而,我不知道为什么我们必须更换所有" Z"如果你不添加replaceAll,程序将失败。