java 字符串转utc时间_如何在Java中转换UTC日期字符串并删除T和Z?

Am using Java 1.7.

Trying to convert:

2018-05-23T23:18:31.000Z

into

2018-05-23 23:18:31

DateUtils class:

public class DateUtils {

public static String convertToNewFormat(String dateStr) throws ParseException {

TimeZone utc = TimeZone.getTimeZone("UTC");

SimpleDateFormat sdf = new SimpleDateFormat("YYYY-MM-dd HH:mm:ss");

sdf.setTimeZone(utc);

Date convertedDate = sdf.parse(dateStr);

return convertedDate.toString();

}

}

When trying to use it:

String convertedDate = DateUtils.convertToNewFormat("2018-05-23T23:18:31.000Z");

System.out.println(convertedDate);

Get the following exception:

Exception in thread "main" java.text.ParseException: Unparseable date: "2018-05-23T23:22:16.000Z"

at java.text.DateFormat.parse(DateFormat.java:366)

at com.myapp.utils.DateUtils.convertToNewFormat(DateUtils.java:7)

What am I possibly doing wrong?

Is there an easier way to do is (e.g. Apache Commons lib)?

解决方案

Try this. You have to use one pattern for parsing and another for formatting.

public static String convertToNewFormat(String dateStr) throws ParseException {

TimeZone utc = TimeZone.getTimeZone("UTC");

SimpleDateFormat sourceFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");

SimpleDateFormat destFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

sourceFormat.setTimeZone(utc);

Date convertedDate = sourceFormat.parse(dateStr);

return destFormat.format(convertedDate);

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值