码迷,mamicode.com
首页 > 其他好文 > 详细

将毫秒数转换为时分秒

时间:2016-12-10 16:05:19      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:timezone   gettime   mat   led   set   转换   static   color   str   

主要代码如下

 1 public class test {
 2 
 3     public static void main(String[] args) {
 4         long ms = 300000;
 5         SimpleDateFormat formatter = new SimpleDateFormat("HH:mm:ss");//这里想要只保留分秒可以写成"mm:ss"
 6         formatter.setTimeZone(TimeZone.getTimeZone("GMT+00:00"));
 7         String hms = formatter.format(ms);
 8         System.out.println(hms);
 9     }
10 
11 }

 

将毫秒数转换为时分秒

标签:timezone   gettime   mat   led   set   转换   static   color   str   

原文地址:http://www.cnblogs.com/xujingyang/p/6155746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!