Java必會的工具庫,讓你的代碼量減少90%
關(guān)注我們,設(shè)為星標,每天7:30不見不散,架構(gòu)路上與您共享 回復"架構(gòu)師"獲取資源
工作很多年后,才發(fā)現(xiàn)有很多工具類庫,可以大大簡化代碼量,提升開發(fā)效率,初級開發(fā)者卻不知道。而這些類庫早就成為了業(yè)界標準類庫,大公司的內(nèi)部也都在使用,如果剛工作的時候就有人告訴我使用這些工具類庫,該多好!
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方法可以實現(xiàn)這個功能
String join = String.join(",", list);
System.out.println(join); // 輸出 a,b,c
1.2 比較兩個字符串是否相等,忽略大小寫
if (strA.equalsIgnoreCase(strB)) {
System.out.println("相等");
}
1.3 比較兩個對象是否相等
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工具類庫
2.1 commons-lang,java.lang的增強版
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
2.1.1 字符串判空
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 首字母轉(zhuǎn)成大寫
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 格式化日期
// Date類型轉(zhuǎn)String類型
String date = DateFormatUtils.format(new Date(), "yyyy-MM-dd HH:mm:ss");
System.out.println(date); // 輸出 2021-05-01 01:01:01
// String類型轉(zhuǎn)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 包裝臨時對象
// 返回兩個字段
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 集合工具類
<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 操作對象
<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"}
// 對象轉(zhuǎn)map
Map<String, String> map = BeanUtils.describe(user);
System.out.println(map); // 輸出 {"id":"1","name":"yideng"}
// map轉(zhuǎn)對象
User newUser = new User();
BeanUtils.populate(newUser, map);
System.out.println(newUser); // 輸出 {"id":1,"name":"yideng"}
2.4 commons-io 文件流處理
<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 工具類庫
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.1.1-jre</version>
</dependency>
3.1 創(chuàng)建集合
List<String> list = Lists.newArrayList();
List<Integer> list = Lists.newArrayList(1, 2, 3);
// 反轉(zhuǎn)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<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();
3.2.2 BiMap 一種連value也不能重復的HashMap
BiMap<String, String> biMap = HashBiMap.create();
// 如果value重復,put方法會拋異常,除非用forcePut方法
biMap.put("key","value");
System.out.println(biMap); // 輸出 {"key":"value"}
// 既然value不能重復,何不實現(xiàn)個翻轉(zhuǎn)key/value的方法,已經(jīng)有了
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,可以查看行數(shù)據(jù)
Map<String, String> row = table.row(18);
System.out.println(row); // 輸出 {"男":"yideng","女":"Lily"}
// 查看列數(shù)據(jù)
Map<Integer, String> column = table.column("男");
System.out.println(column); // 輸出 {18:"yideng"}
3.2.4 Multiset 一種用來計數(shù)的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());
}
// 還能手動設(shè)置某個元素出現(xiàn)的次數(shù)
multiset.setCount("apple", 5);
以上為個人經(jīng)驗,希望能給大家一個參考,如有錯誤或未考慮完全的地方,望不吝賜教。
文章來源:https://www.toutiao.com/i6943239541448917512

到此文章就結(jié)束了。如果今天的文章對你在進階架構(gòu)師的路上有新的啟發(fā)和進步,歡迎轉(zhuǎn)發(fā)給更多人。歡迎加入架構(gòu)師社區(qū)技術(shù)交流群,眾多大咖帶你進階架構(gòu)師,在后臺回復“加群”即可入群。
這些年小編給你分享過的干貨
2.ERP系統(tǒng),自帶進銷存+財務+生產(chǎn)功能,拿來即用(附源碼)
3.帶工作流的SpringBoot后臺管理項目快速開發(fā)(附源碼)
4.最好的OA系統(tǒng),拿來即用,非常方便(附源碼)
5.SpringBoot+Vue完整的外賣系統(tǒng),手機端和后臺管理,附源碼!
6.SpringBoot+Vue 可視化拖拽編輯的大屏項目(附源碼)

轉(zhuǎn)發(fā)在看就是最大的支持??
評論
圖片
表情
