commons-lang3的依赖
时间: 2023-04-02 08:02:01 浏览: 115
commons-lang3-3.2-bin.tar.gz
commons-lang3 是 Apache 组织开发的一个 Java 工具类库,提供了许多常用的工具类和方法,比如字符串处理、日期处理、数组操作等。如果你需要使用 commons-lang3,可以在项目的 pom.xml 文件中添加以下依赖:
```
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.</version>
</dependency>
```
这样就可以在项目中使用 commons-lang3 提供的工具类和方法了。
阅读全文