首页 > 其他 > 详细

Date工具类

时间:2015-10-29 23:17:53      阅读:308      评论:0      收藏:0      [点我收藏+]

不多说看!

 1 public class DateUtils {
 2 
 3     public static final String datetimeFormater = "yyyy-MM-dd HH:mm:ss";
 4     public static final String dateFormater = "yyyy-MM-dd";
 5 
 6     // private static Date date ;
 7     /**
 8      * 格式化时间
 9      */
10     public static String formatDateTime(Date date) {
11         SimpleDateFormat df = new SimpleDateFormat(datetimeFormater);
12         return df.format(date);
13     }
14 
15     /**
16      * 格式化时间戳
17      */
18     public static String formatTimeMillion(String time) {
19         if(time != null){
20             Date date = new Date(Long.parseLong(time) * 1000);
21             SimpleDateFormat format = new SimpleDateFormat(dateFormater);
22             String str = format.format(date);
23             return str;
24         }
25         return "";
26     }
27 
28     /**
29      * 根据具体的时间获得时间戳
30      * 
31      * @param datetime
32      * @return
33      */
34     public static long getLongTime(String datetime) {
35         SimpleDateFormat df = new SimpleDateFormat(datetimeFormater);
36         Date date = null;
37         try {
38             date = df.parse(datetime);
39         } catch (Exception e) {
40             e.printStackTrace();
41         }
42         if(date != null){
43             return date.getTime() / 1000;
44         }else{
45             return 0;
46         }
47     }
48 
49     /**
50      * 根据具体的时间获得时间戳
51      * 
52      * @param datetime
53      * @return
54      */
55     public static String getFormatTime(String time) {
56         DecimalFormat df = new DecimalFormat("#");
57         double d = Double.parseDouble(time);
58         String result = df.format(d);
59         return formatTimeMillion(result);
60     }
61     
62     public static String  converTime(long time){
63         Date d = new Date(time);
64         SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd hh:mm");
65         return sdf.format(d);
66     }
67 }

 

Date工具类

原文:http://www.cnblogs.com/yangang2013/p/4921987.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!