当前位置: 技术问答>java相关
如何得到UTC时间?
来源: 互联网 发布时间:2015-10-08
本文导语: 根据System.currentTimeMillis() 如何得到YYYYMMDD,HHMMSS格式的UTC(GMT)时间? 多谢!! | java.text.SimpleDateFormat | new java.util.Date(System.currentTimeMillis()).toString(); 或: new java.sql.Date(System.currentTime...
根据System.currentTimeMillis()
如何得到YYYYMMDD,HHMMSS格式的UTC(GMT)时间?
多谢!!
如何得到YYYYMMDD,HHMMSS格式的UTC(GMT)时间?
多谢!!
|
java.text.SimpleDateFormat
|
new java.util.Date(System.currentTimeMillis()).toString();
或:
new java.sql.Date(System.currentTimeMillis()).toString();
或:
new java.sql.Date(System.currentTimeMillis()).toString();
|
我也没用过:P
可是找到了一个例子:
// Format the current time.
SimpleDateFormat formatter
= new SimpleDateFormat ("yyyy.MM.dd G 'at' hh:mm:ss a zzz");
Date currentTime_1 = new Date();
String dateString = formatter.format(currentTime_1);
这是java api doc里面的一个例子!
你可以对你的具体要求作相应的修改
可是找到了一个例子:
// Format the current time.
SimpleDateFormat formatter
= new SimpleDateFormat ("yyyy.MM.dd G 'at' hh:mm:ss a zzz");
Date currentTime_1 = new Date();
String dateString = formatter.format(currentTime_1);
这是java api doc里面的一个例子!
你可以对你的具体要求作相应的修改