共计 6297 个字符,预计需要花费 16 分钟才能阅读完成。
工作很多年后,才发现有很多工具类库,能够大大简化代码量,晋升开发效率,高级开发者却不晓得。而这些类库早就成为了业界规范类库,大公司的外部也都在应用,如果刚工作的时候就有人通知我应用这些工具类库,该多好!
一块看一下有哪些工具类库你也用过。
1. Java 自带工具办法
1.1 List 汇合拼接成以逗号分隔的字符串
// 如何把 list 汇合拼接成以逗号分隔的字符串 a,b,c
List<String> list = Arrays.asList("a", "b", "c");
// 第一种办法,能够用 stream 流
String join = list.stream().collect(Collectors.joining(","));
System.out.println(join); // 输入 a,b,c
// 第二种办法,其实 String 也有 join 办法能够实现这个性能
String join = String.join(",", list);
System.out.println(join); // 输入 a,b,c
1.2 比拟两个字符串是否相等,疏忽大小写
if (strA.equalsIgnoreCase(strB)) {System.out.println("相等");
}
1.3 比拟两个对象是否相等
当咱们用 equals 比拟两个对象是否相等的时候,还须要对右边的对象进行判空,不然可能会报空指针异样,咱们能够用 java.util 包下 Objects 封装好的比拟是否相等的办法
Objects.equals(strA, strB);
源码是这样的
public static boolean equals(Object a, Object b) {return (a == b) || (a != null && a.equals(b));
}
1.4 两个 List 汇合取交加
List<String> list1 = new ArrayList<>();
list1.add("a");
list1.add("b");
list1.add("c");
List<String> list2 = new ArrayList<>();
list2.add("a");
list2.add("b");
list2.add("d");
list1.retainAll(list2);
System.out.println(list1); // 输入 [a, b]
2. apache commons 工具类库
apache commons 是最弱小的,也是应用最宽泛的工具类库,外面的子库十分多,上面介绍几个最罕用的
2.1 commons-lang,java.lang 的增强版
倡议应用 commons-lang3,优化了一些 api,原来的 commons-lang 已进行更新
Maven 依赖是:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
2.1.1 字符串判空
传参 CharSequence 类型是 String、StringBuilder、StringBuffer 的父类,都能够间接上面办法判空,以下是源码:
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 依赖是:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.4</version>
</dependency>
2.2.1 汇合判空
封装了汇合判空的办法,以下是源码:
public static boolean isEmpty(final Collection<?> coll) {return coll == null || coll.isEmpty();
}
public static boolean isNotEmpty(final Collection<?> coll) {return !isEmpty(coll);
}
// 两个汇合取交加
Collection<String> collection = CollectionUtils.retainAll(listA, listB);
// 两个汇合取并集
Collection<String> collection = CollectionUtils.union(listA, listB);
// 两个汇合取差集
Collection<String> collection = CollectionUtils.subtract(listA, listB);
2.3 common-beanutils 操作对象
Maven 依赖:
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.4</version>
</dependency>
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 依赖:
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.8.0</version>
</dependency>
文件解决
File file = new File("demo1.txt");
// 读取文件
List<String> lines = FileUtils.readLines(file, Charset.defaultCharset());
// 写入文件
FileUtils.writeLines(new File("demo2.txt"), lines);
// 复制文件
FileUtils.copyFile(srcFile, destFile);
3. Google Guava 工具类库
Maven 依赖:
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.1.1-jre</version>
</dependency>
3.1 创立汇合
List<String> list = Lists.newArrayList();
List<Integer> list = Lists.newArrayList(1, 2, 3);
// 反转 list
List<Integer> reverse = Lists.reverse(list);
System.out.println(reverse); // 输入 [3, 2, 1]
// list 汇合元素太多,能够分成若干个汇合,每个汇合 10 个元素
List<List<Integer>> partition = Lists.partition(list, 10);
// 创立 map 和 set
Map<String, String> map = Maps.newHashMap();
Set<String> 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<Integer> values = map.get("key");
System.out.println(map); // 输入 {"key":[1,2]}
// 还能返回你以前应用的臃肿的 Map
Map<String, Collection<Integer>> collectionMap = map.asMap();
多省事,多简洁,省得你再创立 Map<String, List<Integer>>
3.2.1 BiMap 一种连 value 也不能反复的 HashMap
BiMap<String, String> biMap = HashBiMap.create();
// 如果 value 反复,put 办法会抛异样,除非用 forcePut 办法
biMap.put("key","value");
System.out.println(biMap); // 输入 {"key":"value"}
// 既然 value 不能反复,何不实现个翻转 key/value 的办法,曾经有了
BiMap<String, String> inverse = biMap.inverse();
System.out.println(inverse); // 输入 {"value":"key"}
这其实是双向映射,在某些场景还是很实用的。
3.2.3 Table 一种有两个 key 的 HashMap
// 一批用户,同时按年龄和性别分组
Table<Integer, String, String> table = HashBasedTable.create();
table.put(18, "男", "yideng");
table.put(18, "女", "Lily");
System.out.println(table.get(18, "男")); // 输入 yideng
// 这其实是一个二维的 Map,能够查看行数据
Map<String, String> row = table.row(18);
System.out.println(row); // 输入 {"男":"yideng","女":"Lily"}
// 查看列数据
Map<Integer, String> column = table.column("男");
System.out.println(column); // 输入 {18:"yideng"}
3.2.4 Multiset 一种用来计数的 Set
Multiset<String> multiset = HashMultiset.create();
multiset.add("apple");
multiset.add("apple");
multiset.add("orange");
System.out.println(multiset.count("apple")); // 输入 2
// 查看去重的元素
Set<String> set = multiset.elementSet();
System.out.println(set); // 输入 ["orange","apple"]
// 还能查看没有去重的元素
Iterator<String> iterator = multiset.iterator();
while (iterator.hasNext()) {System.out.println(iterator.next());
}
// 还能手动设置某个元素呈现的次数
multiset.setCount("apple", 5);
你还晓得哪些罕用的工具办法或类库?
正文完