hutool 依赖添加
时间: 2023-10-03 09:08:35 浏览: 229
hutool文档pdf
要将 Hutool 依赖添加到你的项目中,你需要在项目的构建文件中添加以下依赖关系:
Maven 项目:
```xml
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.7.8</version>
</dependency>
```
Gradle 项目:
```groovy
implementation 'cn.hutool:hutool-all:5.7.8'
```
请注意,以上依赖关系可能需要根据你的项目配置进行更改。
阅读全文