关于Hutool的模块使用说明方法

2024-06-19 06:28

本文主要是介绍关于Hutool的模块使用说明方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在这里插入图片描述

Hutool包含多个模块,每个模块针对特定的功能需求提供支持:• hutool-aop:JDK动态代理封装,为非IOC环境提供切面支持。• hutool-bloomFilter:布隆过滤器,提供基于Hash算法的实现。• hutool-cache:简单的缓存实现。• hutool-core:核心模块,包含Bean操作、日期处理等多种工具。• hutool-cron:定时任务模块,支持类似Crontab的表达式。• hutool-crypto:加密解密模块,封装了对称、非对称及摘要算法。• hutool-db:基于JDBC的数据操作封装,采用ActiveRecord思想。• hutool-dfa:基于DFA模型的多关键字查找。• hutool-extra:扩展模块,封装第三方服务如模板引擎、邮件、Servlet等。• hutool-http:基于HttpUrlConnectionHttpClient封装。• hutool-log:自动识别日志实现的日志门面。• hutool-script:脚本执行封装,如Javascript。• hutool-setting:功能强大的配置文件和Properties封装。• hutool-system:系统参数调用封装,如JVM信息。• hutool-json:JSON实现。• hutool-captcha:图片验证码实现。• hutool-poi:针对POIExcelWord封装。• hutool-socket:基于Java NIOAIOSocket封装。• hutool-jwt:JSON Web TokenJWT)封装。可以根据需求对每个模块单独引入,也可以通过引入hutool-all方式引入所有模块。

Hutool的使用,在Maven项目中,可以通过添加以下依赖来引入Hutool:

<dependency><groupId>cn.hutool</groupId><artifactId>hutool-all</artifactId><version>5.8.28</version>
</dependency>

HTTP请求示例
Hutool简化了HTTP请求的处理,以下是发送GET和POST请求的示例:

public static void main(String[] args) {// GET请求示例String content = HttpUtil.get("https://www.example.com/api/data");// POST请求示例HashMap<String, Object> param = new HashMap<>();param.put("city", "重庆");String result = HttpUtil.post("https://www.example.com/api/post", param);System.out.println("GET请求返回:" + content);System.out.println("POST请求返回:" + result);
}

随机验证码生成方法

import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.TimeUnit;import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.http.HttpHeaders;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import cn.hutool.captcha.CaptchaUtil;
import cn.hutool.captcha.LineCaptcha;
import cn.hutool.captcha.generator.RandomGenerator;
import cn.hutool.crypto.SecureUtil;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.security.SecurityRequirement;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.AllArgsConstructor;
/*** 系统基础信息--图片验证码管理模块* @author weimeilayer@gmail.com* @date 2021年3月17日 图片验证码(支持算术形式)*/
@CrossOrigin
@RestController
@AllArgsConstructor
@RequestMapping("/code")
@SecurityRequirement(name = HttpHeaders.AUTHORIZATION)
@Tag(description = "图片验证码模块操作接口", name = "图片验证码模块操作接口")
public class SysCaptchaController {/*** 宽*/private final Integer WIDTH = 120;/*** 高*/private final Integer HEIGHT = 40;/*** 编码长度*/private final Integer CODE_COUNT = 4;/*** 干扰线数*/private final Integer LINE_COUNT = 20;/*** 验证码长度*/private final Integer CODE_SIZE = 4;/*** RedisTemplate*/private final RedisTemplate redisTemplate;/*** 验证码有效期*/private final Integer CODE_TIME = 60;/*** 验证码前缀*/private final String DEFAULT_CODE_KEY = "DEFAULT_CODE_KEY:";/*** 验证码* * @param key* @return*/@Operation(summary = "生成字节流验证码")@GetMapping(value = "/captcha/{key}")public R randomImage(@PathVariable String key) {// 第一种:验证码纯数字化RandomGenerator randomGenerator = new RandomGenerator("0123456789", CODE_SIZE );LineCaptcha lineCaptcha = CaptchaUtil.createLineCaptcha(WIDTH, HEIGHT, CODE_COUNT, LINE_COUNT);// 调用父类的 setGenerator() 方法,设置验证码的类型lineCaptcha.setGenerator(randomGenerator);String code = lineCaptcha.getCode();String realKey = SecureUtil.md5(code + key);redisTemplate.opsForValue().set(DEFAULT_CODE_KEY  + realKey, code, CODE_TIME,TimeUnit.SECONDS);Map<String, String> res = new HashMap<>(2);res.put("realKey", realKey);res.put("img", lineCaptcha.getImageBase64Data());//第二种:验证码含字母/*LineCaptcha lineCaptcha = CaptchaUtil.createLineCaptcha(WIDTH, HEIGHT, CODE_COUNT, LINE_COUNT);String code = lineCaptcha.getCode();String realKey = SecureUtil.md5(code + key);if (GlobalConfig.isRedisSwitch()) {redisTemplate.opsForValue().set(DEFAULT_CODE_KEY   + realKey, code, CODE_TIME, TimeUnit.SECONDS);}Map<String, String> res = new HashMap<>(2);res.put("realKey", realKey);res.put("img", lineCaptcha.getImageBase64());*/return R.ok(res);}

拼音工具

导入
import cn.hutool.extra.pinyin.PinyinUtil;// 获取全部拼音 输出结果:ni hao
String pinyin = PinyinUtil.getPinyin("你好", " ");
// 获取拼音首字母 输出结果:h s d y g
String result = PinyinUtil.getFirstLetter("H是第一个", ", ");

数字处理工具,包括保留小数、时间格式化、校验数字和生成随机数

import cn.hutool.core.lang.Console;
import cn.hutool.core.util.NumberUtil;/*** @author weimeilayer@gmail.com ✨* @date 💓💕 2023年5月20日 🐬🐇 💓💕*/
public class NumberUtilExample {public static void main(String[] args) {double number1 = 1234.56789;double number2 = 9876.54321;// 保留小数点后两位,并以字符串形式返回String rounded1 = NumberUtil.roundStr(number1, 2);String rounded2 = NumberUtil.roundStr(number2, 2);Console.log("保留小数点后两位:");Console.log(rounded1); // 输出: 1234.57Console.log(rounded2); // 输出: 9876.54// 保留小数点后四位,并返回double类型BigDecimal rounded3 = NumberUtil.round(number1, 4);BigDecimal rounded4 = NumberUtil.round(number2, 4);Console.log("保留小数点后四位:");Console.log(rounded3); // 输出: 1234.5679Console.log(rounded4); // 输出: 9876.5432}
}

数据脱敏
import cn.hutool.core.lang.Console;
import cn.hutool.core.util.DesensitizedUtil;

/*** @author weimeilayer@gmail.com ✨* @date 💓💕 2024年3月5日 🐬🐇 💓💕*/public class DesensitizedUtilExample {public static void main(String[] args) {// 身份证号脱敏String idCard = "222222202205201314";String desensitizedIdCard = DesensitizedUtil.idCardNum(idCard, 1, 2);Console.log("原始身份证号: " + idCard);Console.log("脱敏后身份证号: " + desensitizedIdCard); // 输出: 2***************14// 手机号脱敏String phoneNumber = "13800001314";String desensitizedPhone = DesensitizedUtil.mobilePhone(phoneNumber);Console.log("原始手机号: " + phoneNumber);Console.log("脱敏后手机号: " + desensitizedPhone); // 输出: 138****1314// 密码脱敏String password = "1234567890";String desensitizedPassword = DesensitizedUtil.password(password);Console.log("原始密码: " + password);Console.log("脱敏后密码: " + desensitizedPassword); // 输出: **********}
}

布隆过滤器

import cn.hutool.bloomfilter.BitMapBloomFilter;
import cn.hutool.core.lang.Console;/*** @author weimeilayer@gmail.com ✨* @date 💓💕 2024年3月5日 🐬🐇 💓💕*/
public class BloomFilterExample {public static void main(String[] args) {// 初始化布隆过滤器,预期容量为5个城市名BitMapBloomFilter filter = new BitMapBloomFilter(5);// 添加城市名filter.add("北京");filter.add("上海");filter.add("广州");// 查找城市名boolean exists1 = filter.contains("北京");boolean exists2 = filter.contains("深圳");Console.log("布隆过滤器测试:");Console.log("是否存在 '北京': " + exists1); // 输出: trueConsole.log("是否存在 '深圳': " + exists2); // 输出: false}
}

Hutool的MailUtil简化了邮件发送过程,以下是发送邮件的示例

import cn.hutool.extra.mail.MailAccount;
import cn.hutool.extra.mail.MailUtil;/*** @author weimeilayer@gmail.com ✨* @date 💓💕 2024年3月5日 🐬🐇 💓💕*/
public class MailUtilExample {public static void main(String[] args) {// 发件人邮箱配置MailAccount mailAccount = new MailAccount();mailAccount.setHost("smtp.example.com");mailAccount.setPort(465); // SMTP端口mailAccount.setAuth(true);mailAccount.setFrom("sender@example.com");mailAccount.setUser("sender@example.com");mailAccount.setPass("password"); // 发件人邮箱密码或授权码// 收件人邮箱String to = "recipient@example.com";// 发送邮件MailUtil.send(mailAccount, to, "测试邮件", "这是一封来自Hutool的测试邮件。");}
}

这篇关于关于Hutool的模块使用说明方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1074257

相关文章

Zookeeper安装和配置说明

一、Zookeeper的搭建方式 Zookeeper安装方式有三种,单机模式和集群模式以及伪集群模式。 ■ 单机模式:Zookeeper只运行在一台服务器上,适合测试环境; ■ 伪集群模式:就是在一台物理机上运行多个Zookeeper 实例; ■ 集群模式:Zookeeper运行于一个集群上,适合生产环境,这个计算机集群被称为一个“集合体”(ensemble) Zookeeper通过复制来实现

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

python: 多模块(.py)中全局变量的导入

文章目录 global关键字可变类型和不可变类型数据的内存地址单模块(单个py文件)的全局变量示例总结 多模块(多个py文件)的全局变量from x import x导入全局变量示例 import x导入全局变量示例 总结 global关键字 global 的作用范围是模块(.py)级别: 当你在一个模块(文件)中使用 global 声明变量时,这个变量只在该模块的全局命名空

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

深入探索协同过滤:从原理到推荐模块案例

文章目录 前言一、协同过滤1. 基于用户的协同过滤(UserCF)2. 基于物品的协同过滤(ItemCF)3. 相似度计算方法 二、相似度计算方法1. 欧氏距离2. 皮尔逊相关系数3. 杰卡德相似系数4. 余弦相似度 三、推荐模块案例1.基于文章的协同过滤推荐功能2.基于用户的协同过滤推荐功能 前言     在信息过载的时代,推荐系统成为连接用户与内容的桥梁。本文聚焦于

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

pdfmake生成pdf的使用

实际项目中有时会有根据填写的表单数据或者其他格式的数据,将数据自动填充到pdf文件中根据固定模板生成pdf文件的需求 文章目录 利用pdfmake生成pdf文件1.下载安装pdfmake第三方包2.封装生成pdf文件的共用配置3.生成pdf文件的文件模板内容4.调用方法生成pdf 利用pdfmake生成pdf文件 1.下载安装pdfmake第三方包 npm i pdfma