一块看一下有哪些工具类库你也用过。1. <em>Java</em>自带工具方法 List集合拼接成以逗号分隔的字符串 // 如何把list集合拼接成以逗号分隔的字符串 a,b,c List<String> list = Arrays.asList("a", "b", "c");// 第一
2021-05-28 10:30:41
工作很多年後,才發現有很多工具類庫,可以大大簡化程式碼量,提升開發效率,初級開發者卻不知道。而這些類庫早就成為了業界標準類庫,大公司的內部也都在使用,如果剛工作的時候就有人告訴我使用這些工具類庫,該多好!
一塊看一下有哪些工具類庫你也用過。
1. Java自帶工具方法
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);
比較兩個字元串是否相等,忽略大小寫
if (strA.equalsIgnoreCase(strB)) {
System.out.println("相等");
}
比較兩個物件是否相等
當我們用equals比較兩個物件是否相等的時候,還需要對左邊的物件進行判空,不然可能會報空指針異常,我們可以用java.util包下Objects封裝好的比較是否相等的方法
Objects.equals(strA, strB);
源碼是這樣的
public static boolean equals(Object a, Object b) {
return (a == b) || (a != null && a.equals(b));
兩個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是最強大的,也是使用最廣泛的工具類庫,裡面的子庫非常多,下面介紹幾個最常用的
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>
字元串判空
傳參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);
首字母轉成大寫
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 集合工具類
<artifactId>commons-collections4</artifactId>
<version>4.4</version>
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依賴:
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.4</version>
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 檔案流處理
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.8.0</version>
檔案處理
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 工具類庫
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.1.1-jre</version>
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<String, String> map = Maps.newHashMap();
Set<String> set = Sets.newHashSet();
相關文章
一块看一下有哪些工具类库你也用过。1. <em>Java</em>自带工具方法 List集合拼接成以逗号分隔的字符串 // 如何把list集合拼接成以逗号分隔的字符串 a,b,c List<String> list = Arrays.asList("a", "b", "c");// 第一
2021-05-28 10:30:41
「来源: |<em>Python</em>爬虫与数据挖掘 ID:crawler_<em>python</em>」回复“书籍”即可获赠<em>Python</em>从入门到进阶共10本电子书 今 日 鸡 汤 至今思项羽,不肯过江东。一、什么是文件?文件就是把一些存储存放起来
2021-05-28 10:30:28
那就是价格定位。根据分析师的爆料,新款的MacBook Pro搭载了更强的处理器,可能配备了更多的接口、更强大的显示器,但是与此同时也必定在更高的价位段!新推出的机器是用来取代现款14499起售的四雷电接口的<em>英特尔</em>M
2021-05-28 10:30:02
首先,大陆晶圆厂要拿下这座“堡垒”,就得面对台积电、三星、联电、格芯、<em>英特尔</em>等业内“拦路虎”。尤其是近日争论比较大的台积电南京28nm生产线,有声音认为,该条生产线将使大陆芯片代工企业不得不面临台积
2021-05-28 10:02:22
今年年中,<em>英特尔</em>更新自家移动芯片产品,带来了第11酷睿处理器,而各家笔记本厂商也相应推出搭载<em>英特尔</em>11代酷睿处理器的产品,Acer在5月27日晚,在线上举办了2021年春季新品发布会,带来了全系列新品,涵盖笔记
2021-05-28 10:01:55
作为毕业季产品,OPPO 还联合夸克高考在Reno6的负一屏实现了模拟填报志愿的功能,还可以通过跳转<em>浏览器</em>快速查询高考相关信息。 现在的用户也越来越关注个人信息安全,ColorOS 从信息级、应用级、空间级防护、
2021-05-28 10:00:53