赞
踩
本文是博主工作中用到的一些常用方法,现在给大家共享出来,省的翻文档
Hutools获取一个随机数
RandomUtil.randomInt(1, userList.size())
Hutools获取任意时间的前5秒和后五秒
String time = DateUtil.format(DateUtil.offsetSecond(new Date(), +5), new SimpleDateFormat("HHmmss"));
String offsetTime = DateUtil.format(DateUtil.offsetSecond(new Date(), -5), new SimpleDateFormat("HHmmss"));
Hutools字符串去除后缀
StrUtil.removeSuffix(aa,",")
Hutools计算时间差
/**
* 封装hutools工具类时间差方法
*
* @param startTime 开始时间
* @param endTime 结束时间
* @return Long 时间差
*/
public static Long betweenDay(String startTime, String endTime) {
if (StrUtil.isBlank(startTime) || StrUtil.isBlank(endTime)) {
return 0L;
}
return DateUtil.between(DateUtil.parse(startTime), DateUtil.parse(endTime), DateUnit.DAY);
}
Hutools将yyyy/mm/dd转换成yyyy-mm-dd并且加上时间
/**
* @param time 时间
* @param type 1开始时间 2结束时间
* @return
*/
public static String handleTime(String time, Integer type) {
switch (type) {
case 1:
if (StringUtils.isBlank(time)) {
time = DateUtil.lastMonth().toDateStr();
}
time = StrUtil.replace(time, "/", "-") + " 00:00:00";
break;
case 2:
if (StringUtils.isBlank(time)) {
time = DateUtil.date().toDateStr();
}
time = StrUtil.replace(time, "/", "-") + " 23:59:59";
break;
}
return time;
}
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。