各种Utils [vaynexiao]

commons-lang3

lang3是Apache Commons 团队发布的工具包,要求jdk版本在1.5以上,相对于lang来说完全支持java5的特性,废除了一些旧的API。该版本无法兼容旧有版本,于是为了避免冲突改名为lang3。

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-lang3</artifactId> <!--推荐-->
    <version>3.4</version>
</dependency>

<dependency>
    <groupId>commons-lang</groupId>
    <artifactId>commons-lang</artifactId>
    <version>2.6</version>
</dependency>

StringUtils

StringUtils类方法详解   
https://www.cnblogs.com/liangjiejava/p/9850067.html

DateUtils
ArrayUtils
BooleanUtils
EnumUtils
ObjectUtils

上一篇:String split


下一篇:POI操作报错-- java.lang.NoClassDefFoundError: org/apache/commons/math3/util/ArithmeticUtils 解决