java dateformat gmt_如何将java.util.Date转换为GMT格式

我有一个字符串“2014-07-02T17:12:36.488-01:00”,显示山区时区.我将其解析为java.util.date格式.现在我需要将其转换为GMT格式.谁能帮我??

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");

Object dd = null;

try {

dd=sdf.parseObject("2014-07-02T17:12:36.488-01:00");

System.out.println(dd);

} catch (ParseException e) {

e.printStackTrace();`enter code here`

}

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

gmtDateFormat.setTimeZone(java.util.TimeZone.getTimeZone("GMT"));

System.out.println("Current Date and Time in GMT time zone:+ gmtDateFormat.format(dd));

解决方法:

您的代码中存在一些问题.例如,格式字符串与您要解析的字符串的实际格式不匹配.

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSX");

Object dd = null;

try {

dd = sdf.parse("2014-07-02T17:12:36.488-01:00");

System.out.println(dd);

} catch (ParseException e) {

e.printStackTrace();

}

SimpleDateFormat gmtDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ssX");

gmtDateFormat.setTimeZone(java.util.TimeZone.getTimeZone("GMT"));

System.out.println("Current Date and Time in GMT time zone:" + gmtDateFormat.format(dd));

要在您喜欢的任何时区打印当前日期,请在SimpleDateFormat对象上设置要使用的时区.例如:

// Create a Date object set to the current date and time

Date now = new Date();

DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSX");

df.setTimeZone(TimeZone.getTimeZone("GMT"));

System.out.println("Current date and time in GMT: " + df.format(now));

df.setTimeZone(TimeZone.getTimeZone("IST"));

System.out.println("Current date and time in IST: " + df.format(now));

标签:java

来源: https://codeday.me/bug/20191009/1875990.html

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值