Date、String类型相互转换

 积累个时间类型转换的工具类

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

/**
 * @version 1.0
 * @Description 时间的类型转换工具
 * @Author kawaniu
 * @CreateDate 2021/1/27 上午 10:40
 * @UpdateUser
 * @UpdateDate
 * @UpdateRemark
 */
public class TimeUtils {

    // pattern: 根据自己需要的时间格式写
    private static SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");

    /**
     * @param strDate1:查到的时间,strDate2:传入的截止时间
     * @Describe 比较时间大小
     * @Author kawaniu
     * @Date 2021/01/26 上午 10:31
     * @Return Integer
     */
    public static Integer compareDate(String strDate1, String strDate2) {
        try {
            Date dt1 = sdf.parse(strDate1);
            Date dt2 = sdf.parse(strDate2);
            return dt1.getTime() >= dt2.getTime() ? 1 : 0;
        } catch (Exception e) {
            return -1;
        }
    }

    /**
     * @Describe String转Date
     * @Author kawaniu
     * @Date 2021/01/27 上午 10:37
     * @param date:String类型的时间
     * @Return Date
     */
    public static Date StringToDate(String date) {
        try {
            return sdf.parse(date);
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }

    /**
     * @Describe Date转String
     * @Author kawaniu
     * @Date 2021/01/27 上午 10:37
     * @param date:Date类型的时间
     * @Return String
     */
    public static String dateToString(Date date){
        try {
            return sdf.format(date);
        }catch (Exception e){
            e.printStackTrace();
            return null;
        }
    }

}

 

 

 

上一篇:我是如何通过后天努力,从编程小白成功入职python工程师的!月稳定收入2w!


下一篇:毕业设计每日总结2020/2/5