官网 给出了 maven 的依赖导入方式:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.8.1</version>
</dependency>
对应的, 如果用 gradle 管理项目,可以在 build.gradle 的 dependencies 中加入:
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.8.1'
commons-lang3 的所有版本可以在 maven仓库 看到。