java封装时间戳与时间的相互转换

java封装时间戳与时间的相互转换

public class TimeUtil {
    /**
     * 时间戳转换为时间
     * @param time
     * @return
     */
    public static String toDate(Long time){
        Date date = new Date();
        date.setTime(time);
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(date);
    }

    /**
     * 时间转换为时间戳
     * @param time
     * @return
     * @throws ParseException
     */
    public static Long toTimeStamp(String time) throws ParseException {
        //时间格式
        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        Date date = format.parse(time);
        return date.getTime();
    }
}

你可能感兴趣的:(笔记)