public static boolean isEmpty(final CharSequence cs) {
return cs == null || cs.length() == 0;
}
public static boolean isNotEmpty(final CharSequence cs) {
return !isEmpty(cs);
}
// 判空的时候,会去除字符串中的空白字符,比如空格、换行、制表符
public static boolean isBlank(final CharSequence cs) {
final int strLen = length(cs);
if (strLen == 0) {
return true;
}
for (int i = 0; i < strLen; i++) {
if (!Character.isWhitespace(cs.charAt(i))) {
return false;
}
}
return true;
}
public static boolean isNotBlank(final CharSequence cs) {
return !isBlank(cs);
}
2.1.2 首字母转成大写
String str = “yideng”;
String capitalize = StringUtils.capitalize(str);
System.out.println(capitalize); // 输出Yideng
2.1.3 重复拼接字符串
String str = StringUtils.repeat(“ab”, 2);
System.out.println(str); // 输出abab
2.1.4 格式化日期
再也不用手写SimpleDateFormat格式化了
// Date类型转String类型
String date = DateFormatUtils.format(new Date(), “yyyy-MM-dd HH:mm:ss”);
System.out.println(date); // 输出 2021-05-01 01:01:01
// String类型转Date类型
Date date = DateUtils.parseDate(“2021-05-01 01:01:01”, “yyyy-MM-dd HH:mm:ss”);
// 计算一个小时后的日期
Date date = DateUtils.addHours(new Date(), 1);
2.1.5 包装临时对象
当一个方法需要返回两个及以上字段时,我们一般会封装成一个临时对象返回,现在有了Pair和Triple就不需要了
// 返回两个字段
ImmutablePair<Integer, String> pair = ImmutablePair.of(1, “yideng”);
System.out.println(pair.getLeft() + “,” + pair.getRight()); // 输出 1,yideng
// 返回三个字段
ImmutableTriple<Integer, String, Date> triple = ImmutableTriple.of(1, “yideng”, new Date());
System.out.println(triple.getLeft() + “,” + triple.getMiddle() + “,” + triple.getRight()); // 输出 1,yideng,Wed Apr 07 23:30:00 CST 2021
2.2 commons-collections 集合工具类
Maven依赖是:
org.apache.commons
commons-collections4
4.4
2.2.1 集合判空
封装了集合判空的方法,以下是源码:
p
ublic static boolean isEmpty(final Collection<?> coll) {
return coll == null || coll.isEmpty();
}
public static boolean isNotEmpty(final Collection<?> coll) {
return !isEmpty(coll);
}
// 两个集合取交集
Collection collection = CollectionUtils.retainAll(listA, listB);
// 两个集合取并集
Collection collection = CollectionUtils.union(listA, listB);
// 两个集合取差集
Collection collection = CollectionUtils.subtract(listA, listB);
2.3 common-beanutils 操作对象
Maven依赖:
commons-beanutils
commons-beanutils
1.9.4
public class User {
private Integer id;
private String name;
}
设置对象属性
User user = new User();
BeanUtils.setProperty(user, “id”, 1);
BeanUtils.setProperty(user, “name”, “yideng”);
System.out.println(BeanUtils.getProperty(user, “name”)); // 输出 yideng
System.out.println(user); // 输出 {“id”:1,“name”:“yideng”}
对象和map互转
// 对象转map
Map<String, String> map = BeanUtils.describe(user);
System.out.println(map); // 输出 {“id”:“1”,“name”:“yideng”}
// map转对象
User newUser = new User();
BeanUtils.populate(newUser, map);
System.out.println(newUser); // 输出 {“id”:1,“name”:“yideng”}
2.4 commons-io 文件流处理
Maven依赖:
commons-io
commons-io
2.8.0
文件处理
File file = new File(“demo1.txt”);
// 读取文件
List lines = FileUtils.readLines(file, Charset.defaultCharset());
// 写入文件
FileUtils.writeLines(new File(“demo2.txt”), lines);
// 复制文件
FileUtils.copyFile(srcFile, destFile);
3. Google Guava 工具类库
Maven依赖:
com.google.guava
guava
30.1.1-jre
3.1 创建集合
List list = Lists.newArrayList();
List list = Lists.newArrayList(1, 2, 3);
// 反转list
List reverse = Lists.reverse(list);
System.out.println(reverse); // 输出 [3, 2, 1]
// list集合元素太多,可以分成若干个集合,每个集合10个元素
List<List> partition = Lists.partition(list, 10);
Map<String, String> map = Maps.newHashMap();
Set set = Sets.newHashSet();
3.2 黑科技集合
3.2.1 Multimap 一个key可以映射多个value的HashMap
Multimap<String, Integer> map = ArrayListMultimap.create();
map.put(“key”, 1);
map.put(“key”, 2);
Collection values = map.get(“key”);
System.out.println(map); // 输出 {“key”:[1,2]}
// 还能返回你以前使用的臃肿的Map
Map<String, Collection> collectionMap = map.asMap();
多省事,多简洁,省得你再创建 Map<String, List>