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

前端之家收集整理的这篇文章主要介绍了java – 使用时区将字符串转换为日期前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个字符串的模式yyyy-MM-dd hh:mm a
我可以分别得到上述字符串代表日期的时区对象.

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

我该怎么办?

解决方法

您可以使用 @L_502_0@与yyyy-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

原文链接:https://www.f2er.com/java/122269.html

猜你在找的Java相关文章