Java工具库——Hutool的50个常用方法

news2024/11/19 19:30:14

在这里插入图片描述
爱一辈子也好,恨一辈子也罢,终究是要让你记我一辈子…

工具库介绍

Hutool-All(或简称Hutool)是一个功能强大的Java编程工具库,旨在简化Java应用程序的开发。它提供了大量的工具类和方法,涵盖了各种常见任务,包括字符串处理、日期时间操作、文件操作、网络通信、加密解密、数据转换、图像处理、JSON操作、Excel处理、邮件发送等等。以下是Hutool-All的一些主要功能和模块的详细介绍:

  1. 字符串工具(StrUtil)

    • 提供了各种字符串处理方法,如判空、截取、拼接、格式化、大小写转换、正则表达式匹配等。
  2. 日期时间工具(DateUtil)

    • 支持日期时间的格式化、解析、计算、比较、时区转换、时间间隔计算等功能。
  3. 文件工具(FileUtil)

    • 提供了文件和目录的操作,包括复制、移动、删除、文件大小计算、文件类型判断等。
  4. 加密解密工具(SecureUtil)

    • 包括各种常见的加密算法和哈希函数,如MD5、SHA-1、SHA-256、DES、AES等。
  5. 网络工具(NetUtil)

    • 提供了网络相关的工具方法,如获取本机IP地址、端口扫描、HTTP请求发送等。
  6. 数据转换工具(Convert)

    • 支持各种数据类型之间的转换,包括字符串、数字、日期、集合等。
  7. JSON工具(JSONUtil)

    • 提供了JSON对象的转换、解析、格式化和操作,方便与JSON数据的交互。
  8. Excel工具(ExcelUtil)

    • 支持Excel文件的读取和写入,包括读取和写入Excel表格数据、样式设置等。
  9. 图像工具(ImageUtil)

    • 提供了图像处理功能,包括缩放、裁剪、旋转、水印添加、格式转换等。
  10. 邮件工具(MailUtil)

    • 用于发送电子邮件的工具,支持文本和HTML邮件的发送。
  11. 定时任务工具(CronUtil)

    • 提供了Cron表达式的解析和计算,方便定时任务的管理和调度。
  12. 日志工具(Log)

    • 提供了简化日志记录的方法,允许以不同级别输出日志信息。
  13. 其他工具(MiscUtil)

    • 包含了一些其他杂项工具,如SystemUtil(系统信息获取)、RuntimeUtil(运行时信息获取)等。

Hutool-All被广泛应用于Java开发中,因为它简化了许多常见任务的处理,提高了开发效率。开发人员可以在项目中引入Hutool-All库,然后使用其中的工具方法来完成各种任务,而无需从头编写复杂的代码。这有助于减少代码重复性,提高代码质量,并加速应用程序的开发过程。您可以在Hutool的官方网站或GitHub仓库上找到详细的文档和示例代码,以帮助您更好地了解和使用这个工具库。

方法列举

以下是Hutool-All库中的50个常用方法,每个方法都附带有代码示例和详细解释:

  1. 字符串判空和非空检查
import cn.hutool.core.util.StrUtil;

String str = "Hello, World!";
boolean isEmpty = StrUtil.isEmpty(str); // 检查字符串是否为空
boolean isNotEmpty = StrUtil.isNotEmpty(str); // 检查字符串是否非空
  1. 字符串拼接
String str1 = "Hello";
String str2 = "World";
String result = StrUtil.format("{} {}!", str1, str2); // 使用{}占位符拼接字符串
  1. 日期格式化
import cn.hutool.core.date.DateUtil;

Date date = new Date();
String formattedDate = DateUtil.format(date, "yyyy-MM-dd HH:mm:ss"); // 格式化日期
  1. 日期计算
import cn.hutool.core.date.DateUtil;

Date now = new Date();
Date nextDay = DateUtil.offsetDay(now, 1); // 计算下一天的日期
  1. 文件复制
import cn.hutool.core.io.FileUtil;

FileUtil.copy("source.txt", "destination.txt", true); // 复制文件,第三个参数表示是否覆盖
  1. MD5加密
import cn.hutool.crypto.SecureUtil;

String input = "password123";
String md5Hash = SecureUtil.md5(input); // 计算MD5哈希值
  1. HTTP请求发送
import cn.hutool.http.HttpUtil;

String response = HttpUtil.get("https://www.example.com"); // 发送GET请求
  1. JSON转换
import cn.hutool.json.JSONUtil;

String jsonString = "{\"name\":\"John\",\"age\":30}";
JSONObject jsonObject = JSONUtil.parseObj(jsonString); // 将JSON字符串转换为JSON对象
  1. Excel读取
import cn.hutool.poi.excel.ExcelUtil;
import cn.hutool.poi.excel.ExcelReader;

ExcelReader reader = ExcelUtil.getReader("data.xlsx"); // 读取Excel文件
List<List<Object>> dataList = reader.read(); // 读取数据
  1. 图像缩放
import cn.hutool.core.img.ImgUtil;

ImgUtil.scale(new File("input.jpg"), new File("output.jpg"), 0.5f); // 缩放图像大小
  1. 发送邮件
import cn.hutool.extra.mail.MailUtil;
import cn.hutool.extra.mail.MailAccount;

MailAccount account = new MailAccount();
account.setHost("smtp.example.com");
account.setPort(25);
account.setAuth(true);
account.setUser("your@email.com");
account.setPass("yourpassword");

MailUtil.send(account, "recipient@example.com", "Subject", "Message Body", false);
  1. 解析Cron表达式
import cn.hutool.cron.CronUtil;

String cron = "0 0/1 * * * ?";
CronUtil.schedule("testJob", cron, () -> System.out.println("执行任务")); // 解析Cron表达式并执行任务
CronUtil.start();
  1. 文件读取
import cn.hutool.core.io.FileUtil;

String content = FileUtil.readUtf8String("example.txt"); // 读取文件内容
  1. SHA-256加密
import cn.hutool.crypto.digest.DigestUtil;

String input = "password123";
String sha256Hash = DigestUtil.sha256Hex(input); // 计算SHA-256哈希值
  1. HTTP POST请求
import cn.hutool.http.HttpUtil;

String postData = "data=example";
String response = HttpUtil.post("https://www.example.com", postData); // 发送POST请求
  1. URL编码和解码
import cn.hutool.core.util.URLUtil;

String url = "https://www.example.com?q=Hutool-All";
String encodedUrl = URLUtil.encode(url); // URL编码
String decodedUrl = URLUtil.decode(encodedUrl); // URL解码
  1. 判断文件是否存在
import cn.hutool.core.io.FileUtil;

boolean fileExists = FileUtil.exist("example.txt"); // 判断文件是否存在
  1. AES加密和解密
import cn.hutool.crypto.symmetric.SymmetricCrypto;

SymmetricCrypto aes = new SymmetricCrypto(SymmetricAlgorithm.AES, "yourkey");
String content = "Sensitive data";
String encrypted = aes.encryptBase64(content); // AES加密
String decrypted = aes.decryptStr(encrypted); // AES解密
  1. URL构建
import cn.hutool.http.HtmlUtil;

String baseUrl = "https://www.example.com";
String query = "q=Hutool-All";
String completeUrl = HtmlUtil.encodeUrl(baseUrl, query); // 构建带查询参数的URL
  1. XML解析
import cn.hutool.core.util.XmlUtil;

String xml = "<user><name>John</name><age>30</age></user>";
Element root = XmlUtil.readXML(xml);
String name = XmlUtil.elementText(root, "name"); // 解析XML文档
  1. 文件写入
import cn.hutool.core.io.FileUtil;

String content = "This is a test.";
FileUtil.writeUtf8String(content, "example.txt"); // 写入文件内容
  1. 身份证号码验证
import cn.hutool.core.util.IdcardUtil;

String idCard = "330682200001010101";
boolean valid = IdcardUtil.isValidCard(idCard); // 验证身份证号码是否有效
  1. 生成UUID
import cn.hutool.core.util.IdUtil;

String uuid = IdUtil.simpleUUID(); // 生成简单UUID
  1. HTTP下载文件
import cn.hutool.http.HttpUtil;

HttpUtil.downloadFile("https://www.example.com/file.zip", "downloaded.zip"); // 下载文件
  1. Map转换为Bean
import cn.hutool.core.bean.BeanUtil;

Map<String, Object> map = new HashMap<>();
map.put("name", "John");
map.put("age", 30);
User user = BeanUtil.mapToBean(map, User.class, true); // 将Map转换为Java Bean
  1. Enum转换工具
import cn.hutool.core.util.EnumUtil;

EnumUtil.fromString(WeekEnum.class, "SUND

AY"); // 通过名称获取Enum常量
  1. IP地址验证
import cn.hutool.core.util.NetUtil;

boolean validIp = NetUtil.isUsableLocalPort(80); // 检查端口是否可用
  1. 读取系统属性
import cn.hutool.system.SystemUtil;

String osName = SystemUtil.get("os.name"); // 读取系统属性
  1. 正则表达式匹配
import cn.hutool.core.util.ReUtil;

String content = "The price is $100.99";
String regex = "The price is \\$(\\d+\\.\\d+)";
String price = ReUtil.get(regex, content, 1); // 使用正则表达式匹配并提取价格
  1. Base64编码
import cn.hutool.core.codec.Base64;

String source = "Base64 Encoding";
String encoded = Base64.encode(source); // 进行Base64编码
String decoded = Base64.decodeStr(encoded); // 进行Base64解码
  1. 随机数生成
import cn.hutool.core.util.RandomUtil;

int randomInt = RandomUtil.randomInt(1, 100); // 生成指定范围内的随机整数
  1. 获取类加载器
import cn.hutool.core.util.ClassLoaderUtil;

ClassLoader classLoader = ClassLoaderUtil.getClassLoader(); // 获取当前线程的类加载器
  1. 获取文件后缀名
import cn.hutool.core.io.FileUtil;

String fileName = "example.txt";
String extension = FileUtil.extName(fileName); // 获取文件的后缀名
  1. LRU缓存
import cn.hutool.cache.Cache;
import cn.hutool.cache.CacheUtil;

Cache<String, String> lruCache = CacheUtil.newLRUCache(100);
lruCache.put("key1", "value1");
String value = lruCache.get("key1"); // 获取LRU缓存中的值
  1. XML格式化
import cn.hutool.core.util.XmlUtil;

String xml = "<user><name>John</name><age>30</age></user>";
String formattedXml = XmlUtil.format(xml); // 格式化XML文档
  1. 路径拼接
import cn.hutool.core.io.FileUtil;

String path1 = "C:\\example\\dir";
String path2 = "file.txt";
String fullPath = FileUtil.join(path1, path2); // 拼接路径
  1. CSV读取
import cn.hutool.core.text.csv.CsvData;
import cn.hutool.core.text.csv.CsvReader;

CsvReader reader = new CsvReader("data.csv", CharsetUtil.CHARSET_UTF_8);
CsvData data = reader.read(); // 读取CSV文件内容
  1. Base58编码
import cn.hutool.core.util.StrUtil;

String input = "Base58 Encoding";
String encoded = StrUtil.base58Encode(input); // 进行Base58编码
String decoded = StrUtil.base58Decode(encoded); // 进行Base58解码
  1. URL参数解析
import cn.hutool.http.HtmlUtil;

String query = "name=John&age=30";
Map<String, String> paramMap = HtmlUtil.decodeParamMap(query, "UTF-8"); // 解析URL参数
  1. 对象克隆
import cn.hutool.core.util.ObjectUtil;

User original = new User("John", 30);
User clone = ObjectUtil.cloneByStream(original); // 使用流实现对象深克隆
  1. BigDecimal运算
import cn.hutool.core.util.NumberUtil;

BigDecimal num1 = new BigDecimal("10.5");
BigDecimal num2 = new BigDecimal("5.2");
BigDecimal result = NumberUtil.add(num1, num2); // 使用BigDecimal进行精确运算
  1. 随机字符串生成
import cn.hutool.core.util.RandomUtil;

String randomStr = RandomUtil.randomString(8); // 生成指定长度的随机字符串
  1. URL链接合并
import cn.hutool.core.util.URLUtil;

String base = "https://www.example.com";
String relative = "path/to/resource";
String fullUrl = URLUtil.complateUrl(base, relative); // 合并URL链接
  1. List分组
import cn.hutool.core.collection.CollUtil;

List<String> data = Arrays.asList("A", "B", "C", "D", "E");
List<List<String>> groups = CollUtil.subList(data, 2); // 将List分成指定大小的子List
  1. 环境变量获取
import cn.hutool.core.util.StrUtil;

String javaHome = StrUtil.format("Java Home: {}", SystemUtil.get("java.home")); // 获取系统环境变量
  1. 获取远程文件大小
import cn.hutool.http.HttpUtil;

long fileSize = HttpUtil.downloadFile("https://www.example.com/largefile.zip", FileUtil.file("temp.zip")).length(); // 获取远程文件大小
  1. 线程休眠
import cn.hutool.core.thread.ThreadUtil;

ThreadUtil.sleep(2000); // 休眠2秒
  1. 对象比较
import cn.hutool.core.util.ObjectUtil;

boolean isEqual = ObjectUtil.equal(obj1, obj2); // 比较两个对象是否相等
  1. ZIP文件解压
import cn.hutool.core.util.ZipUtil;

ZipUtil.unzip("example.zip", "destinationDir"); // 解压ZIP文件到指定目录
  1. Map键值互换
import cn.hutool.core.collection.CollUtil;

Map<String, Integer> originalMap = new HashMap<>();
Map<Integer, String> swappedMap = CollUtil.reverse(originalMap); // 交换Map的键和值

这些方法代表了Hutool-All库中的常见用例。请注意,Hutool-All库提供了更多方法和功能,可以根据需要选择合适的工具来简化Java开发任务。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1138098.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

创建个人github.io主页(基础版)//吐槽:很多国内教程已经失效了

一、就跟着官网教程来很快就好了 官方文档的教程 GitHub Pages | Websites for you and your projects, hosted directly from your GitHub repository. Just edit, push, and your changes are live. // 简单跑通为例&#xff0c;第一个链接直接能行了&#xff0c;如果不想…

数据泄露高达7 TB ,这家医疗巨头数据库无任何密码保护

该数据库由Redcliffe Labs拥有&#xff0c;Redcliffe Labs是一家位于北方邦诺伊达的印度医疗公司。 网络安全研究员杰里迈亚-福勒&#xff08;Jeremiah Fowler&#xff09;发现了一个无密码保护的数据库&#xff0c;其中包含 1200 多万条记录。这些数据包括敏感的患者数据&…

本地存储 sessionStoragelocalStorage

随着互联网的快速发展&#xff0c;基于网页的应用越来越普遍&#xff0c;同时也变的越来越复杂&#xff0c;为了满足各种各样的需求&#xff0c;会经常性在本地存储大量的数据&#xff0c;HTML5规范提出了相关解决方案。 本地存储特性 数据存储在用户浏览器中 设置、读取方便、…

自监督学习应用

1 自监督学习 自监督学习主要是利用辅助任务&#xff08;pretext&#xff09;从大规模的无监督数据中挖掘自身的监督信息&#xff0c;通过这种构造的监督信息对网络进行训练&#xff0c;从而可以学习到对下游任务有价值的表征。&#xff08;也就是说自监督学习的监督信息不是人…

涨幅25%,2023全球电动车销量将飙升至2000万辆 | 百能云芯

近日&#xff0c;工研院在「眺望2024产业发展趋势研讨会」上发布消息&#xff0c;预测随着全球晶片短缺的逐渐缓解&#xff0c;以及俄乌地区供应链产能向其他国家的部分转移&#xff0c;全球汽车市场在疫情的影响下逐渐回暖。根据工研院的数据&#xff0c;2023年全球汽车销量预…

DSP_控制程序框架有感

本文仅代表个人观点&#xff0c;若有不同意见&#xff0c;请评论区讨论或私信留言。 中心思想&#xff1a; 基于DSP的控制程序可分为两个部分&#xff0c;① 对实时性要求高的部分&#xff0c;②对实时性要求不高的部分。 ① 对实时性要求高的程序&#xff0c;建议采用中断处理…

Ubuntu22.04本地部署PaddleSpeech实验代码(GPU版)

前言 之前做了一个Ubuntu18.04.6本地部署PaddleSpeech实验代码&#xff08;CPU版&#xff09;的相关项目&#xff0c;因为是CPU版的&#xff0c;合成/训练等方面的耗时真的是非常感人&#xff0c;有了之前的经验&#xff0c;又部署了一个GPU版的&#xff0c;说实话虽然时间用的…

CVE-2022-22963 Spring Cloud Function SpEL命令注入

一、简介 Spring Cloud Function 是基于 Spring Boot的函数计算框架。该项目致力于促进函数为主的开发单元&#xff0c;它抽象出所有传输细节和基础架构&#xff0c;并提供一个通用的模型&#xff0c;用于在各种平台上部署基于函数的软件。在Spring Cloud Function相关版本&am…

Pytest框架之fixture详解

本文详细讲解了Pytest框架之fixture&#xff0c;文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值&#xff0c;需要的朋友可以参考下 相关文章 pytest作为python语言的测试框架&#xff0c;它的fixture有2种实现方式。 一种是xunit-style&#xf…

OpenLayers实战,OpenLayers获取用户定位位置并高亮显示用户所在行政区划边界

专栏目录: OpenLayers实战进阶专栏目录 前言 本篇文章通过国内的省、自治区和直辖市的GeoJson数据作为行政区划边界数据,然后根据用户定位位置,通过OpenLayers计算得到用户所在行政区划,并使用OpenLayers高亮显示用户所在行政区划边界。 本章是综合应用场景,所以代码稍…

ESP32 ESP-IDF LVGL移植和Wokwi仿真

陈拓 2023/10/21-2023/10/25 1. ESP-IDF开发环境 ESP-IDF的LVGL移植包括2个组件&#xff1a; lvgllvgl_esp32_drivers 目前lvgl_esp32_drivers在ESP-IDF 5.0以上版本编译通不过&#xff0c;所以我们安装ESP-IDF 4.4.5。 从https://dl.espressif.cn/dl/esp-idf/下载 安装说明…

纳米软件分享:芯片电学测试及测试参数指标介绍

电学测试是芯片测试的一个重要环节&#xff0c;用来描述和评估芯片的电性能、稳定性和可靠性。芯片电学测试包括直流参数测试、交流参数测试和高速数字信号性能测试等。 什么是芯片电学测试? 芯片电学测试就是检测芯片、元件等电性能参数是否满足设计的要求。检测的项目有电压…

【uniapp】短信验证码输入框

需求是短信验证码需要格子输入框 如图 网上找了一个案例改吧改吧 直接上代码 结构 <template><view class"verify-code"><!-- 输入框 --><input id"input" :value"code" class"input" :focus"isFocus"…

Ubuntu安装Jitsi Meet详细教程

文章目录 Ubutu系统安装启用root账户切换Ubuntu源设置DNS 主机名和域名配置安装open JDK安装Nginx安装 Jitsi Meetjitsi本地测试使用一个奇怪的BUG Jist服务管理 Ubutu系统安装 官方推荐用Ubuntu&#xff0c;网上很多教程也都是基于Ubuntu的&#xff0c;所以选择这个系统。 其…

【Python Numpy】Ndarray属性

文章目录 前言一、NumPy数组的常用属性1.1 常用属性1.2 示例代码 总结 前言 NumPy&#xff08;Numerical Python&#xff09;是Python中用于科学计算的一个重要库&#xff0c;它提供了一个强大的多维数组对象&#xff08;ndarray&#xff09;以及一系列用于处理这些数组的函数…

从0到1:CTFer成长之路——死亡 Ping 命令

死亡 ping 命令 绕过探测 手动尝试 慢 脚本生成转义后的字符&#xff0c;后面拼接命令 import urllib.parsewith open(r"C:\Users\LEGION\Desktop\RCE.txt", "w", encoding"utf-8") as f:for i in range(0, 255):encoded_str urllib.parse…

短篇小说 《镜花水月》

最近脑中不知道为什么&#xff0c;一直构想着这样一个故事&#xff0c;心血来潮&#xff0c;还是想把它直接付诸实践。如果大家有些兴趣可以读一读&#xff0c;欢迎评论留言&#xff0c;发表自己的看法&#xff0c;大家也可以给一些建议或者自己设计一些比较好的情节或者点&…

leetcode第80题:删除有序数组中的重复项 II

题目描述 给你一个有序数组 nums &#xff0c;请你 原地 删除重复出现的元素&#xff0c;使得出现次数超过两次的元素只出现两次 &#xff0c;返回删除后数组的新长度。 不要使用额外的数组空间&#xff0c;你必须在 原地 修改输入数组 并在使用 O(1) 额外空间的条件下完成。 …

一种实用的边的存储结构--链式前向星

文章目录 前言前向星定义存储结构优缺点 链式前向星边的定义边的插入边的查找运行示例 总结 前言 我们对于图的存储方式常用的有邻接矩阵&#xff08;适用于稠密图&#xff09;&#xff0c;对于边的查询效率较低&#xff0c;也有邻接表&#xff0c;对于边的查询效率高&#xf…

警报:Citrix和VMware漏洞的PoC利用代码已发布

导语 近日&#xff0c;虚拟化服务提供商VMware向客户发出警报&#xff0c;称其Aria Operations for Logs中的一个已修补安全漏洞的PoC利用代码已经发布。这个高危漏洞&#xff08;CVE-2023-34051&#xff09;是一种绕过身份验证的情况&#xff0c;可能导致远程代码执行。本文将…