Hutool是一个Java工具包,它帮助我们简化每一行代码,避免重复造轮子。如果你有需要用到某些工具方法的时候,不妨在Hutool里面找找,可能就有。本文将对Hutool中的常用工具类和方法进行介绍。

安装

maven项目在pom.xml添加以下依赖即可:

  1. <dependency>
  2. <groupId>cn.hutool</groupId>
  3. <artifactId>hutool-all</artifactId>
  4. <version>4.6.3</version>
  5. </dependency>

常用工具类

Convert

类型转换工具类,用于各种类型数据的转换。

  1. //转换为字符串
  2. int a = 1;
  3. String aStr = Convert.toStr(a);
  4. //转换为指定类型数组
  5. String[] b = {"1", "2", "3", "4"};
  6. Integer[] bArr = Convert.toIntArray(b);
  7. //转换为日期对象
  8. String dateStr = "2017-05-06";
  9. Date date = Convert.toDate(dateStr);
  10. //转换为列表
  11. String[] strArr = {"a", "b", "c", "d"};
  12. List<String> strList = Convert.toList(String.class, strArr);

DateUtil

日期时间工具类,定义了一些常用的日期时间操作方法。

  1. //Date、long、Calendar之间的相互转换
  2. //当前时间
  3. Date date = DateUtil.date();
  4. //Calendar转Date
  5. date = DateUtil.date(Calendar.getInstance());
  6. //时间戳转Date
  7. date = DateUtil.date(System.currentTimeMillis());
  8. //自动识别格式转换
  9. String dateStr = "2017-03-01";
  10. date = DateUtil.parse(dateStr);
  11. //自定义格式化转换
  12. date = DateUtil.parse(dateStr, "yyyy-MM-dd");
  13. //格式化输出日期
  14. String format = DateUtil.format(date, "yyyy-MM-dd");
  15. //获得年的部分
  16. int year = DateUtil.year(date);
  17. //获得月份,从0开始计数
  18. int month = DateUtil.month(date);
  19. //获取某天的开始、结束时间
  20. Date beginOfDay = DateUtil.beginOfDay(date);
  21. Date endOfDay = DateUtil.endOfDay(date);
  22. //计算偏移后的日期时间
  23. Date newDate = DateUtil.offset(date, DateField.DAY_OF_MONTH, 2);
  24. //计算日期时间之间的偏移量
  25. long betweenDay = DateUtil.between(date, newDate, DateUnit.DAY);

StrUtil

字符串工具类,定义了一些常用的字符串操作方法。

  1. //判断是否为空字符串
  2. String str = "test";
  3. StrUtil.isEmpty(str);
  4. StrUtil.isNotEmpty(str);
  5. //去除字符串的前后缀
  6. StrUtil.removeSuffix("a.jpg", ".jpg");
  7. StrUtil.removePrefix("a.jpg", "a.");
  8. //格式化字符串
  9. String template = "这只是个占位符:{}";
  10. String str2 = StrUtil.format(template, "我是占位符");
  11. LOGGER.info("/strUtil format:{}", str2);

ClassPathResource

获取classPath下的文件,在Tomcat等容器下,classPath一般是WEB-INF/classes。

  1. //获取定义在src/main/resources文件夹中的配置文件
  2. ClassPathResource resource = new ClassPathResource("generator.properties");
  3. Properties properties = new Properties();
  4. properties.load(resource.getStream());
  5. LOGGER.info("/classPath:{}", properties);

ReflectUtil

Java反射工具类,可用于反射获取类的方法及创建对象。

  1. //获取某个类的所有方法
  2. Method[] methods = ReflectUtil.getMethods(PmsBrand.class);
  3. //获取某个类的指定方法
  4. Method method = ReflectUtil.getMethod(PmsBrand.class, "getId");
  5. //使用反射来创建对象
  6. PmsBrand pmsBrand = ReflectUtil.newInstance(PmsBrand.class);
  7. //反射执行对象的方法
  8. ReflectUtil.invoke(pmsBrand, "setId", 1);

NumberUtil

数字处理工具类,可用于各种类型数字的加减乘除操作及判断类型。

  1. double n1 = 1.234;
  2. double n2 = 1.234;
  3. double result;
  4. //对float、double、BigDecimal做加减乘除操作
  5. result = NumberUtil.add(n1, n2);
  6. result = NumberUtil.sub(n1, n2);
  7. result = NumberUtil.mul(n1, n2);
  8. result = NumberUtil.div(n1, n2);
  9. //保留两位小数
  10. BigDecimal roundNum = NumberUtil.round(n1, 2);
  11. String n3 = "1.234";
  12. //判断是否为数字、整数、浮点数
  13. NumberUtil.isNumber(n3);
  14. NumberUtil.isInteger(n3);
  15. NumberUtil.isDouble(n3);

BeanUtil

JavaBean的工具类,可用于Map与JavaBean对象的互相转换以及对象属性的拷贝。

  1. PmsBrand brand = new PmsBrand();
  2. brand.setId(1L);
  3. brand.setName("小米");
  4. brand.setShowStatus(0);
  5. //Bean转Map
  6. Map<String, Object> map = BeanUtil.beanToMap(brand);
  7. LOGGER.info("beanUtil bean to map:{}", map);
  8. //Map转Bean
  9. PmsBrand mapBrand = BeanUtil.mapToBean(map, PmsBrand.class, false);
  10. LOGGER.info("beanUtil map to bean:{}", mapBrand);
  11. //Bean属性拷贝
  12. PmsBrand copyBrand = new PmsBrand();
  13. BeanUtil.copyProperties(brand, copyBrand);
  14. LOGGER.info("beanUtil copy properties:{}", copyBrand);

CollUtil

集合操作的工具类,定义了一些常用的集合操作。

  1. //数组转换为列表
  2. String[] array = new String[]{"a", "b", "c", "d", "e"};
  3. List<String> list = CollUtil.newArrayList(array);
  4. //join:数组转字符串时添加连接符号
  5. String joinStr = CollUtil.join(list, ",");
  6. LOGGER.info("collUtil join:{}", joinStr);
  7. //将以连接符号分隔的字符串再转换为列表
  8. List<String> splitList = StrUtil.split(joinStr, ',');
  9. LOGGER.info("collUtil split:{}", splitList);
  10. //创建新的Map、Set、List
  11. HashMap<Object, Object> newMap = CollUtil.newHashMap();
  12. HashSet<Object> newHashSet = CollUtil.newHashSet();
  13. ArrayList<Object> newList = CollUtil.newArrayList();
  14. //判断列表是否为空
  15. CollUtil.isEmpty(list);

MapUtil

Map操作工具类,可用于创建Map对象及判断Map是否为空。

  1. //将多个键值对加入到Map中
  2. Map<Object, Object> map = MapUtil.of(new String[][]{
  3. {"key1", "value1"},
  4. {"key2", "value2"},
  5. {"key3", "value3"}
  6. });
  7. //判断Map是否为空
  8. MapUtil.isEmpty(map);
  9. MapUtil.isNotEmpty(map);

AnnotationUtil

注解工具类,可用于获取注解与注解中指定的值。

  1. //获取指定类、方法、字段、构造器上的注解列表
  2. Annotation[] annotationList = AnnotationUtil.getAnnotations(HutoolController.class, false);
  3. LOGGER.info("annotationUtil annotations:{}", annotationList);
  4. //获取指定类型注解
  5. Api api = AnnotationUtil.getAnnotation(HutoolController.class, Api.class);
  6. LOGGER.info("annotationUtil api value:{}", api.description());
  7. //获取指定类型注解的值
  8. Object annotationValue = AnnotationUtil.getAnnotationValue(HutoolController.class, RequestMapping.class);

SecureUtil

加密解密工具类,可用于MD5加密。

  1. //MD5加密
  2. String str = "123456";
  3. String md5Str = SecureUtil.md5(str);
  4. LOGGER.info("secureUtil md5:{}", md5Str);

CaptchaUtil

验证码工具类,可用于生成图形验证码。

  1. //生成验证码图片
  2. LineCaptcha lineCaptcha = CaptchaUtil.createLineCaptcha(200, 100);
  3. try {
  4. request.getSession().setAttribute("CAPTCHA_KEY", lineCaptcha.getCode());
  5. response.setContentType("image/png");//告诉浏览器输出内容为图片
  6. response.setHeader("Pragma", "No-cache");//禁止浏览器缓存
  7. response.setHeader("Cache-Control", "no-cache");
  8. response.setDateHeader("Expire", 0);
  9. lineCaptcha.write(response.getOutputStream());
  10. } catch (IOException e) {
  11. e.printStackTrace();
  12. }

其他工具类

Hutool中的工具类很多,可以参考:https://www.hutool.cn/

项目源码地址

https://github.com/macrozheng/mall-learning/tree/master/mall-tiny-hutool