package com.rz.utils;

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

public class TransformTime {

    //将拿到的时间转毫秒值          ↓↓ 要转毫秒的时间
    public static long TransformMr(String de) throws ParseException {
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//24小时制  
            long time = simpleDateFormat.parse(de).getTime();
            return time;


    }

    //将毫秒值转时间                    ↓↓long类型的毫秒值
    public static String MrTransformTime(long mr){
        Date date = new Date();
        date.setTime(mr);
        String transformTime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(date);
        return transformTime;
    }

}