积累个时间类型转换的工具类
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;
}
}
}