zoukankan      html  css  js  c++  java
  • java时间戳转换

    import java.text.SimpleDateFormat;  
    import java.util.Calendar;  
    import java.util.Date;  
      
    public class DateUtils {  
              
            /** 
             * 返回unix时间戳 (1970年至今的秒数) 
             * @return 
             */  
            public static long getUnixStamp(){  
                    return System.currentTimeMillis()/1000;  
            }  
              
            /** 
             * 得到昨天的日期 
             * @return 
             */  
            public static String getYestoryDate() {  
                    Calendar calendar = Calendar.getInstance();    
                    calendar.add(Calendar.DATE,-1);  
                    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");  
                    String yestoday = sdf.format(calendar.getTime());  
                    return yestoday;  
            }  
              
            /** 
             * 得到今天的日期 
             * @return 
             */  
            public static  String getTodayDate(){  
                    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");  
                    String date = sdf.format(new Date());  
                    return date;  
            }  
              
            /** 
             * 时间戳转化为时间格式 
             * @param timeStamp 
             * @return 
             */  
            public static String timeStampToStr(long timeStamp) {  
                    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");  
                    String date = sdf.format(timeStamp * 1000);  
                    return date;  
            }  
              
            /** 
             * 得到日期   yyyy-MM-dd 
             * @param timeStamp  时间戳 
             * @return 
             */  
            public static String formatDate(long timeStamp) {     
                    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");  
                    String date = sdf.format(timeStamp*1000);  
                    return date;  
            }  
              
            /** 
             * 得到时间  HH:mm:ss 
             * @param timeStamp   时间戳 
             * @return 
             */  
            public static String getTime(long timeStamp) {    
                    String time = null;  
                    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");  
                    String date = sdf.format(timeStamp * 1000);  
                    String[] split = date.split("\s");  
                    if ( split.length > 1 ){  
                            time = split[1];  
                    }  
                    return time;  
            }  
              
            /** 
             * 将一个时间戳转换成提示性时间字符串,如刚刚,1秒前 
             *  
             * @param timeStamp 
             * @return 
             */  
            public static String convertTimeToFormat(long timeStamp) {  
                    long curTime =System.currentTimeMillis() / (long) 1000 ;  
                    long time = curTime - timeStamp;  
      
                    if (time < 60 && time >= 0) {  
                            return "刚刚";  
                    } else if (time >= 60 && time < 3600) {  
                            return time / 60 + "分钟前";  
                    } else if (time >= 3600 && time < 3600 * 24) {  
                            return time / 3600 + "小时前";  
                    } else if (time >= 3600 * 24 && time < 3600 * 24 * 30) {  
                            return time / 3600 / 24 + "天前";  
                    } else if (time >= 3600 * 24 * 30 && time < 3600 * 24 * 30 * 12) {  
                            return time / 3600 / 24 / 30 + "个月前";  
                    } else if (time >= 3600 * 24 * 30 * 12) {  
                            return time / 3600 / 24 / 30 / 12 + "年前";  
                    } else {  
                            return "刚刚";  
                    }  
            }  
              
            /** 
             * 将一个时间戳转换成提示性时间字符串,(多少分钟) 
             *  
             * @param timeStamp 
             * @return 
             */  
            public static String timeStampToFormat(long timeStamp) {  
                    long curTime =System.currentTimeMillis() / (long) 1000 ;  
                    long time = curTime - timeStamp;  
                    return time/60 + "";  
            }  
      
    }  
  • 相关阅读:
    【RDB】MariaDB 之事务、复制、集群
    【中间件】Redis 实战之主从复制、高可用、分布式
    React从入门到放弃(5):ReactRouter4
    React从入门到放弃(4):Redux中间件
    React从入门到放弃(3):Redux简介
    React从入门到放弃(2):React简介
    React从入门到放弃(1):webpack4简介
    【.NET Core】ASP.NET Core之IdentityServer4(1):快速入门
    【.NET Core】Docker Jenkins ASP.NET Core自动化部署
    【ASP.NET Core】运行原理(4):授权
  • 原文地址:https://www.cnblogs.com/dzcWeb/p/7228610.html
Copyright © 2011-2022 走看看