博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java时区转换(GMT)
阅读量:5781 次
发布时间:2019-06-18

本文共 627 字,大约阅读时间需要 2 分钟。

hot3.png

// fromTime 原始时区 // toTime 需要转换到的时区  public static Date getGMTTime(Date retdate, String fromTime, String toTime){   Calendar cal = Calendar.getInstance();  cal.setTimeZone(TimeZone.getTimeZone(toTime));  cal.setTime(retdate);  Calendar date = Calendar.getInstance();  date.setTimeZone(TimeZone.getTimeZone(fromTime));  date.set(Calendar.MILLISECOND, cal.get(Calendar.MILLISECOND));   date.set(cal.get(Calendar.YEAR),cal.get(Calendar.MONTH),cal.get(Calendar.DAY_OF_MONTH),cal.get(Calendar.HOUR_OF_DAY),cal.get(Calendar.MINUTE),cal.get(Calendar.SECOND));  return date.getTime(); }

转载于:https://my.oschina.net/u/1457061/blog/286631

你可能感兴趣的文章
SPARC-T5 安装 ORACLE 10G
查看>>
DVWA windows7 安装
查看>>
我的友情链接
查看>>
Linux 文件管理命令详解 cp,mv,install (笔记)
查看>>
菜鸟学Linux 第013篇笔记 grep及正则表达式
查看>>
菜鸟学Linux 第039篇笔记 ssh dropbear
查看>>
菜鸟学Linux 第111篇笔记 Memory
查看>>
LinkedIn热 国内职业社交网络市场在哪里
查看>>
我的友情链接
查看>>
thinkphp
查看>>
VB.Net 文本框TextBox只允许输入数字判断
查看>>
C#中格式化日期的方法
查看>>
设计模式的六大原则
查看>>
vmstat命令--Linux命令应用大词典729个命令解读
查看>>
最近在做的事情
查看>>
AGG 第十九课 agg::bezier_arc
查看>>
Python 入门精通 网页
查看>>
用户管理1
查看>>
Memcache查看运行状况
查看>>
JAVA中的闭包
查看>>