在我们日常的java开发过程中都会用到各种工具类,最常用的可能就是DateUtils,StringUtils,ExceptionUtil,FinanceUtil 这几类。
(1)DateUtils
package com.uhi.erp.repair.uhierprepair.util;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
/**
* @author: create by adoreFT
* @version: v1.0
* @keyWord: Time is not waiting for me, you forgot to take me away.
* @description: DateUtils
* @Date: 3/8/21 6:29 PM
**/
public class DateUtils {
private static final Log log = LogFactory.getLog(DateUtils.class);
public static final String DATE_DEFAULT_FORMAT = "yyyy-MM-dd";
public static final String DATETIME_DEFAULT_FORMAT = "yyyy-MM-dd HH:mm:ss";
private static final ThreadLocal<DateFormat> dateFormatHolder = new ThreadLocal<DateFormat>() {
@Override
protected DateFormat initialValue() {
return new SimpleDateFormat(DATETIME_DEFAULT_FORMAT);
}
};
public static Date toDate(String date) {
if (StringUtils.isEmpty(date)) {
return null;
} else {
try {
return dateFormatHolder.get().parse(date);
} catch (Exception ex) {
log.error(String.format("======%s=======日期转化错误", date), ex);
return null;
}
}
}
public static Date toDate(String date, String formatter) {
if (StringUtils.isEmpty(date)) {
return null;
} else {
try {
return (new SimpleDateFormat(formatter)).parse(date);
} catch (Exception ex) {
log.error(String.format("======%s=======日期转化错误", date), ex);
return null;
}
}
}
/**
* 根据日期字符串判断当月第几周
*
* @param str
* @return
* @throws Exception
*/
public static int getWeek(String str) throws Exception {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date date = sdf.parse(str);
Calendar calendar = Calendar.getInstance();
calendar.setTime(date);
//第几周
int week = calendar.get(Calendar.WEEK_OF_MONTH);
//第几天,从周日开始
int day = calendar.get(Calendar.DAY_OF_WEEK);
if (day == 1) {
day = 7;
week = week - 1;
} else {
day = day - 1;
}
return week;
}
public static String toString(Date date) {
return date == null ? null : dateFormatHolder.get().format(date);
}
public static String toString(Date date, String format) {
if (null == date || StringUtils.isBlank(format)) {
return null;
}
final SimpleDateFormat sdf = new SimpleDateFormat(format);
return sdf.format(date);
}
public static Date getDataFormat(Date date, boolean isStart) {
String dateStr = (new SimpleDateFormat("yyyy-MM-dd")).format(date);
String suffix = " 00:00:00";
if (!isStart) {
suffix = " 23:59:59";
}
try {
return (new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")).parse(dateStr + suffix);
} catch (Exception ex) {
log.error(String.format("======%s=======日期转化错误", date), ex);
return null;
}
}
public static int getDiffDays(Date beginDate, Date endDate) {
if (beginDate != null && endDate != null) {
long diff = (endDate.getTime() - beginDate.getTime()) / 86400000L;
int days = (new Long(diff)).intValue() + 1;
return days;
} else {
log.error("getDiffDays日期转化错误");
return 0;
}
}
public static String getDiffMin(Date beginDate, Date endDate) {
if (beginDate != null && endDate != null) {
long diff = beginDate.getTime() - endDate.getTime();//这样得到的差值是微秒级别
long hours = (diff) / (1000 * 60 * 60);
long minutes = (diff - hours * (1000 * 60 * 60)) / (1000 * 60);
return hours + "小时" + minutes + "分";
} else {
log.error("getDiffDays日期转化错误");
}
return null;
}
/**
* @param @param referenceDate
* @param @param day
* @param @return 参数
* @return Date 返回类型
* @throws
* @Title: getSubtractDay
* @Description: 获取距referenceDate日期之前几天的时间
* @author fengtao
* @date 2020年12月11日
*/
public static Date getSubtractDay(Date referenceDate, int day) {
Calendar calendar = Calendar.getInstance();
calendar.setTime(referenceDate);
calendar.add(Calendar.DATE, -day);
return calendar.getTime();
}
public static Date getAddDay(Date referenceDate, int day) {
Calendar calendar = Calendar.getInstance();
calendar.setTime(referenceDate);
calendar.add(Calendar.DATE, day);
return calendar.getTime();
}
public static Date getNextMinute(Date referenceDate, int min) {
Calendar calendar = Calendar.getInstance();
calendar.setTime(referenceDate);
calendar.add(Calendar.MINUTE, min);
return calendar.getTime();
}
public static Date getNextHour(Date referenceDate, int hh) {
Calendar calendar = Calendar.getInstance();
calendar.setTime(referenceDate);
calendar.add(Calendar.HOUR_OF_DAY, hh);
return calendar.getTime();
}
public static String getDateTimeFormat(Date date) {
return toString(date);
}
public static String getDateFormat(Date date) {
return toString(date, DATE_DEFAULT_FORMAT);
}
}
这个工具类用到了:ThreadLocal 保证了线程安全性。
(2)StringUtils
package com.uhi.common.utils;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.uhi.common.core.text.StrFormatter;
/**
* 字符串工具类
*
* @author adoreFT
*/
public class StringUtils extends org.apache.commons.lang3.StringUtils {
/**
* 空字符串
*/
private static final String NULLSTR = "";
/**
* 下划线
*/
private static final char SEPARATOR = '_';
/**
* 获取参数不为空值
*
* @param value defaultValue 要判断的value
* @return value 返回值
*/
public static <T> T nvl(T value, T defaultValue) {
return value != null ? value : defaultValue;
}
/**
* * 判断一个Collection是否为空, 包含List,Set,Queue
*
* @param coll 要判断的Collection
* @return true:为空 false:非空
*/
public static boolean isEmpty(Collection<?> coll) {
return isNull(coll) || coll.isEmpty();
}
/**
* * 判断一个Collection是否非空,包含List,Set,Queue
*
* @param coll 要判断的Collection
* @return true:非空 false:空
*/
public static boolean isNotEmpty(Collection<?> coll) {
return !isEmpty(coll);
}
/**
* * 判断一个对象数组是否为空
*
* @param objects 要判断的对象数组
* * @return true:为空 false:非空
*/
public static boolean isEmpty(Object[] objects) {
return isNull(objects) || (objects.length == 0);
}
/**
* * 判断一个对象数组是否非空
*
* @param objects 要判断的对象数组
* @return true:非空 false:空
*/
public static boolean isNotEmpty(Object[] objects) {
return !isEmpty(objects);
}
/**
* * 判断一个Map是否为空
*
* @param map 要判断的Map
* @return true:为空 false:非空
*/
public static boolean isEmpty(Map<?, ?> map) {
return isNull(map) || map.isEmpty();
}
/**
* * 判断一个Map是否为空
*
* @param map 要判断的Map
* @return true:非空 false:空
*/
public static boolean isNotEmpty(Map<?, ?> map) {
return !isEmpty(map);
}
/**
* * 判断一个字符串是否为空串
*
* @param str String
* @return true:为空 false:非空
*/
public static boolean isEmpty(String str) {
return isNull(str) || NULLSTR.equals(str.trim());
}
/**
* * 判断一个字符串是否为非空串
*
* @param str String
* @return true:非空串 false:空串
*/
public static boolean isNotEmpty(String str) {
return !isEmpty(str);
}
/**
* * 判断一个对象是否为空
*
* @param object Object
* @return true:为空 false:非空
*/
public static boolean isNull(Object object) {
return object == null;
}
/**
* * 判断一个对象是否非空
*
* @param object Object
* @return true:非空 false:空
*/
public static boolean isNotNull(Object object) {
return !isNull(object);
}
/**
* * 判断一个对象是否是数组类型(Java基本型别的数组)
*
* @param object 对象
* @return true:是数组 false:不是数组
*/
public static boolean isArray(Object object) {
return isNotNull(object) && object.getClass().isArray();
}
/**
* 去空格
*/
public static String trim(String str) {
return (str == null ? "" : str.trim());
}
/**
* 截取字符串
*
* @param str 字符串
* @param start 开始
* @return 结果
*/
public static String substring(final String str, int start) {
if (str == null) {
return NULLSTR;
}
if (start < 0) {
start = str.length() + start;
}
if (start < 0) {
start = 0;
}
if (start > str.length()) {
return NULLSTR;
}
return str.substring(start);
}
/**
* @param targetStr 目标字符串
* @param str 查找字符串
* @param index 第n次出现
* @param order 顺序(大于0表示正序,小于0表示反序)
* @return
*/
public static String substring_index(String targetStr, String str, int index, int order) {
/**
* 当 str 不存在于 targetStr 时,不管是正序还是反序都返回原字符串
* 当index大于 str 在 targetStr 中出现的次数,不管是正序还是反序都返回原字符串
*/
String result = targetStr;
String pair_str = str;
if (targetStr == null || targetStr.trim().length() == 0) {
return result;
}
//当index=0时,返回原值
if (index == 0) {
return targetStr;
}
//判断是正序还是反序(大于等于0表示正序,小于0表示反序)
if (order < 0) {
targetStr = new StringBuffer(targetStr).reverse().toString();
pair_str = new StringBuffer(pair_str).reverse().toString();
}
int beginIndex = 0;
int count = 0;
while ((beginIndex = targetStr.indexOf(pair_str, beginIndex)) != -1) {
count++;
//当index与字符串出现次数相同时,开始返回结果
if (count == index) {
if (order < 0) {//反序时
targetStr = new StringBuffer(targetStr).reverse().toString();
result = targetStr.substring(targetStr.length() - beginIndex);
} else {//正序时
result = targetStr.substring(0, beginIndex);
}
return result;
}
beginIndex = beginIndex + pair_str.length();
}
return result;
}
/**
* 截取字符串
*
* @param str 字符串
* @param start 开始
* @param end 结束
* @return 结果
*/
public static String substring(final String str, int start, int end) {
if (str == null) {
return NULLSTR;
}
if (end < 0) {
end = str.length() + end;
}
if (start < 0) {
start = str.length() + start;
}
if (end > str.length()) {
end = str.length();
}
if (start > end) {
return NULLSTR;
}
if (start < 0) {
start = 0;
}
if (end < 0) {
end = 0;
}
return str.substring(start, end);
}
/**
* 格式化文本, {} 表示占位符<br>
* 此方法只是简单将占位符 {} 按照顺序替换为参数<br>
* 如果想输出 {} 使用 \\转义 { 即可,如果想输出 {} 之前的 \ 使用双转义符 \\\\ 即可<br>
* 例:<br>
* 通常使用:format("this is {} for {}", "a", "b") -> this is a for b<br>
* 转义{}: format("this is \\{} for {}", "a", "b") -> this is \{} for a<br>
* 转义\: format("this is \\\\{} for {}", "a", "b") -> this is \a for b<br>
*
* @param template 文本模板,被替换的部分用 {} 表示
* @param params 参数值
* @return 格式化后的文本
*/
public static String format(String template, Object... params) {
if (isEmpty(params) || isEmpty(template)) {
return template;
}
return StrFormatter.format(template, params);
}
/**
* 字符串转set
*
* @param str 字符串
* @param sep 分隔符
* @return set集合
*/
public static final Set<String> str2Set(String str, String sep) {
return new HashSet<String>(str2List(str, sep, true, false));
}
/**
* 字符串转list
*
* @param str 字符串
* @param sep 分隔符
* @param filterBlank 过滤纯空白
* @param trim 去掉首尾空白
* @return list集合
*/
public static final List<String> str2List(String str, String sep, boolean filterBlank, boolean trim) {
List<String> list = new ArrayList<String>();
if (StringUtils.isEmpty(str)) {
return list;
}
// 过滤空白字符串
if (filterBlank && StringUtils.isBlank(str)) {
return list;
}
String[] split = str.split(sep);
for (String string : split) {
if (filterBlank && StringUtils.isBlank(string)) {
continue;
}
if (trim) {
string = string.trim();
}
list.add(string);
}
return list;
}
/**
* 下划线转驼峰命名
*/
public static String toUnderScoreCase(String str) {
if (str == null) {
return null;
}
StringBuilder sb = new StringBuilder();
// 前置字符是否大写
boolean preCharIsUpperCase = true;
// 当前字符是否大写
boolean curreCharIsUpperCase = true;
// 下一字符是否大写
boolean nexteCharIsUpperCase = true;
for (int i = 0; i < str.length(); i++) {
char c = str.charAt(i);
if (i > 0) {
preCharIsUpperCase = Character.isUpperCase(str.charAt(i - 1));
} else {
preCharIsUpperCase = false;
}
curreCharIsUpperCase = Character.isUpperCase(c);
if (i < (str.length() - 1)) {
nexteCharIsUpperCase = Character.isUpperCase(str.charAt(i + 1));
}
if (preCharIsUpperCase && curreCharIsUpperCase && !nexteCharIsUpperCase) {
sb.append(SEPARATOR);
} else if ((i != 0 && !preCharIsUpperCase) && curreCharIsUpperCase) {
sb.append(SEPARATOR);
}
sb.append(Character.toLowerCase(c));
}
return sb.toString();
}
/**
* 是否包含字符串
*
* @param str 验证字符串
* @param strs 字符串组
* @return 包含返回true
*/
public static boolean inStringIgnoreCase(String str, String... strs) {
if (str != null && strs != null) {
for (String s : strs) {
if (str.equalsIgnoreCase(trim(s))) {
return true;
}
}
}
return false;
}
/**
* 将下划线大写方式命名的字符串转换为驼峰式。如果转换前的下划线大写方式命名的字符串为空,则返回空字符串。 例如:HELLO_WORLD->HelloWorld
*
* @param name 转换前的下划线大写方式命名的字符串
* @return 转换后的驼峰式命名的字符串
*/
public static String convertToCamelCase(String name) {
StringBuilder result = new StringBuilder();
// 快速检查
if (name == null || name.isEmpty()) {
// 没必要转换
return "";
} else if (!name.contains("_")) {
// 不含下划线,仅将首字母大写
return name.substring(0, 1).toUpperCase() + name.substring(1);
}
// 用下划线将原始字符串分割
String[] camels = name.split("_");
for (String camel : camels) {
// 跳过原始字符串中开头、结尾的下换线或双重下划线
if (camel.isEmpty()) {
continue;
}
// 首字母大写
result.append(camel.substring(0, 1).toUpperCase());
result.append(camel.substring(1).toLowerCase());
}
return result.toString();
}
/**
* 驼峰式命名法 例如:user_name->userName
*/
public static String toCamelCase(String s) {
if (s == null) {
return null;
}
s = s.toLowerCase();
StringBuilder sb = new StringBuilder(s.length());
boolean upperCase = false;
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
if (c == SEPARATOR) {
upperCase = true;
} else if (upperCase) {
sb.append(Character.toUpperCase(c));
upperCase = false;
} else {
sb.append(c);
}
}
return sb.toString();
}
@SuppressWarnings("unchecked")
public static <T> T cast(Object obj) {
return (T) obj;
}
}
该工具类继承于 org.apache.commons.lang3.StringUtils 并新加了新的字符串方法。
(3)FinanceUtil
package com.uhi.erp.repair.uhierprepair.util;
import java.math.BigDecimal;
/**
* @author: create by fengtao
* @version: v1.0
* @keyWord: Time is not waiting for me, you forgot to take me away.
* @description: FinanceUtil
* @date:2019-07-02 16:57
**/
public class FinanceUtil {
private static final int DEF_DIV_SCALE = 4;
/**
* 提供精确的加法运算
*
* @param v1 被加数
* @param v2 加数
* @return 两个参数的和
*/
public static Double add(Double v1, Double v2) {
if (v1 == null || v2 == null) {
return null;
}
BigDecimal b1 = new BigDecimal(Double.toString(v1));
BigDecimal b2 = new BigDecimal(Double.toString(v2));
return b1.add(b2).setScale(DEF_DIV_SCALE, BigDecimal.ROUND_HALF_UP).doubleValue();
}
/**
* 提供精确的减法运算
*
* @param v1 被减数
* @param v2 减数
* @return 两个参数的差
*/
public static Double substract(Double v1, Double v2) {
if (v1 == null || v2 == null) {
return null;
}
BigDecimal b1 = new BigDecimal(Double.toString(v1));
BigDecimal b2 = new BigDecimal(Double.toString(v2));
return b1.subtract(b2).setScale(DEF_DIV_SCALE, BigDecimal.ROUND_HALF_UP).doubleValue();
}
/**
* 提供精确的乘法运算
*
* @param v1 被乘数
* @param v2 乘数
* @return 两个参数的积
*/
public static Double multiply(Double v1, Double v2) {
if (v1 == null || v2 == null) {
return null;
}
BigDecimal b1 = new BigDecimal(Double.toString(v1));
BigDecimal b2 = new BigDecimal(Double.toString(v2));
return b1.multiply(b2).setScale(DEF_DIV_SCALE, BigDecimal.ROUND_HALF_UP).doubleValue();
}
/**
* 提供(相对)精确的除法运算,当发生除不尽的情况时,
* 精确到小数点以后10位,以后的数字四舍五入.
*
* @param v1 被除数
* @param v2 除数
* @return 两个参数的商
*/
public static Double divide(Double v1, Double v2) {
return divide(v1, v2, DEF_DIV_SCALE);
}
/**
* 提供(相对)精确的除法运算.
* 当发生除不尽的情况时,由scale参数指 定精度,以后的数字四舍五入.
*
* @param v1 被除数
* @param v2 除数
* @param scale 表示需要精确到小数点以后几位
* @return 两个参数的商
*/
public static Double divide(Double v1, Double v2, int scale) {
if (v1 == null || v2 == null) {
return null;
}
if (scale < 0) {
throw new IllegalArgumentException("The scale must be a positive integer or zero");
}
BigDecimal b1 = new BigDecimal(Double.toString(v1));
BigDecimal b2 = new BigDecimal(Double.toString(v2));
return b1.divide(b2, scale, BigDecimal.ROUND_HALF_UP).doubleValue();
}
/**
* 提供精确的小数位四舍五入处理
*
* @param v 需要四舍五入的数字
* @param scale 小数点后保留几位
* @return 四舍五入后的结果
*/
public static Double round(Double v, int scale) {
if (v == null) {
return null;
}
if (scale < 0) {
throw new IllegalArgumentException("The scale must be a positive integer or zero");
}
BigDecimal b = new BigDecimal(Double.toString(v));
BigDecimal one = new BigDecimal("1");
return b.divide(one, scale, BigDecimal.ROUND_HALF_UP).doubleValue();
}
}
(4)ListUtils
package com.uhi.common.utils;
import java.util.ArrayList;
import java.util.List;
/**
* @Author: AdoreFT
* @License: (C) Copyright 2017-2022, AdoreXM Corporation Limited.
* @Contact: adoreFT@haidilao.com
* @Date: 2021/6/7 19:20
* @Version: 1.0
* @Description: ListUtils
**/
public class ListUtils {
/**
* 遍历并切片
*
* @param list 待切片的 list
* @param pageSize 切片大小
* @param <T> 泛型类型
* @return
*/
public static <T> List<List<T>> splitArrayList(List<T> list, int pageSize) {
List<List<T>> listCountList = new ArrayList<List<T>>();
int listSize = list.size();
for (int i = 0; i < listSize; i += pageSize) {
int toIndex = Math.min(i + pageSize, listSize);
listCountList.add(list.subList(i, toIndex));
}
return listCountList;
}
}
此工具类是讲集合分割成等分的几个集合。