常用的时间戳,Date,String转换工具类

import java.text.DecimalFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;

/**
 * 常用的时间转换方法
 */
public class TimeUtils {

    /**
     * 获取指定时间戳的方法
     * @param str 指定的时间
     * @param sdf 时间格式
     * @return
     */
    public   static Long getTimestamp(String str,String sdf){
        Long timeAmp =0L;
        Date date=null;
        try {
            SimpleDateFormat simpleDateFormat = new SimpleDateFormat(sdf);
            date = simpleDateFormat.parse(str);
            timeAmp = date.getTime();

        } catch (ParseException e) {
            e.printStackTrace();
        }
        return timeAmp;
    }

    /**
     * 将时间戳转成字符串
     * @param timeAmp 时间戳
     * @param sdf 时间格式
     * @return
     */
    public static String getTimestampToString(Long timeAmp,String sdf){
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat(sdf);
        Date date = new Date(timeAmp);
        String format = simpleDateFormat.format(date);
        return format;
    }

    /**
     * 将字符串转成时间戳
     * @param time 时间字符串
     * @param sdf  时间格式
     * @return
     */
    public static Long getStringToTimestamp(String time,String sdf){
        long time1=0L;
        try {
            SimpleDateFormat simpleDateFormat = new SimpleDateFormat(sdf);
            Date parse = simpleDateFormat.parse(time);
            time1 = parse.getTime();
        } catch (ParseException e) {
            e.printStackTrace();
        }
        return time1;
    }

    /**
     * 将日期转成指定字符串
     * @param date 日期
     * @param sdf 格式
     * @return
     */
    public  static String getDateToString(Date date,String sdf){
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat(sdf);
        String format = simpleDateFormat.format(date);
        return  format;
    }

    /**
     * 获取当前时间指定间隔后的时间
     * @param lastTime 间隔时间(毫秒)
     * @return
     */
    public static Date getLastDate(Long lastTime){
        long currentTime = System.currentTimeMillis()+lastTime ;
        Date date=new Date(currentTime);
        return date;
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值