真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Java常用的工具庫有哪些

這篇文章主要介紹“Java常用的工具庫有哪些”,在日常操作中,相信很多人在Java常用的工具庫有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Java常用的工具庫有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

為定海等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及定海網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為網(wǎng)站設(shè)計、成都網(wǎng)站制作、定海網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!

工作很多年后,才發(fā)現(xiàn)有很多工具類庫,可以大大簡化代碼量,提升開發(fā)效率,初級開發(fā)者卻不知道。而這些類庫早就成為了業(yè)界標(biāo)準(zhǔn)類庫,大公司的內(nèi)部也都在使用,如果剛工作的時候就有人告訴我使用這些工具類庫,該多好!

一塊看一下有哪些工具類庫你也用過。

1. Java自帶工具方法

1.1 List集合拼接成以逗號分隔的字符串 

// 如何把list集合拼接成以逗號分隔的字符串 a,b,c  List list = Arrays.asList("a", "b", "c");  // 第一種方法,可以用stream流  String join = list.stream().collect(Collectors.joining(","));  System.out.println(join); // 輸出 a,b,c  // 第二種方法,其實(shí)String也有join方法可以實(shí)現(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 比較兩個對象是否相等

當(dāng)我們用equals比較兩個對象是否相等的時候,還需要對左邊的對象進(jìn)行判空,不然可能會報空指針異常,我們可以用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 list1 = new ArrayList<>();  list1.add("a");  list1.add("b");  list1.add("c");  List 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是最強(qiáng)大的,也是使用最廣泛的工具類庫,里面的子庫非常多,下面介紹幾個最常用的

2.1 commons-lang,java.lang的增強(qiáng)版

建議使用commons-lang3,優(yōu)化了一些api,原來的commons-lang已停止更新

Maven依賴是:

      org.apache.commons      commons-lang3      3.12.0  

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 首字母轉(zhuǎn)成大寫

String str = "yideng";  String capitalize = StringUtils.capitalize(str);  System.out.println(capitalize); // 輸出Yideng

2.1.3 重復(fù)拼接字符串

String str = StringUtils.repeat("ab", 2);  System.out.println(str); // 輸出abab

2.1.4 格式化日期

再也不用手寫SimpleDateFormat格式化了

// 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 包裝臨時對象

當(dāng)一個方法需要返回兩個及以上字段時,我們一般會封裝成一個臨時對象返回,現(xiàn)在有了Pair和Triple就不需要了

// 返回兩個字段  ImmutablePair pair = ImmutablePair.of(1, "yideng");  System.out.println(pair.getLeft() + "," + pair.getRight()); // 輸出 1,yideng  // 返回三個字段  ImmutableTriple 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 集合判空

封裝了集合判空的方法,以下是源碼:

public 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;  }

設(shè)置對象屬性

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互轉(zhuǎn)

// 對象轉(zhuǎn)map  Map map = BeanUtils.describe(user);  System.out.println(map); // 輸出 {"id":"1","name":"yideng"}  // map轉(zhuǎn)對象  User newnewUser = 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);  // 復(fù)制文件  FileUtils.copyFile(srcFile, destFile);

3. Google Guava 工具類庫

Maven依賴:

      com.google.guava      guava      30.1.1-jre  

3.1 創(chuàng)建集合 

List list = Lists.newArrayList();  List list = Lists.newArrayList(1, 2, 3);  // 反轉(zhuǎn)list  List reverse = Lists.reverse(list);  System.out.println(reverse); // 輸出 [3, 2, 1]  // list集合元素太多,可以分成若干個集合,每個集合10個元素  List> partition = Lists.partition(list, 10);  Map map = Maps.newHashMap();  Set set = Sets.newHashSet();

3.2 黑科技集合

3.2.1 Multimap 一個key可以映射多個value的HashMap

Multimap 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> collectionMap = map.asMap();

多省事,多簡潔,省得你再創(chuàng)建 Map

3.2.2 BiMap 一種連value也不能重復(fù)的HashMap

BiMap biMap = HashBiMap.create();  // 如果value重復(fù),put方法會拋異常,除非用forcePut方法  biMap.put("key","value");  System.out.println(biMap); // 輸出 {"key":"value"}  // 既然value不能重復(fù),何不實(shí)現(xiàn)個翻轉(zhuǎn)key/value的方法,已經(jīng)有了  BiMap inverse = biMap.inverse();  System.out.println(inverse); // 輸出 {"value":"key"}

這其實(shí)是雙向映射,在某些場景還是很實(shí)用的。

3.2.3 Table 一種有兩個key的HashMap

// 一批用戶,同時按年齡和性別分組  Table table = HashBasedTable.create();  table.put(18, "男", "yideng");  table.put(18, "女", "Lily");  System.out.println(table.get(18, "男")); // 輸出 yideng  // 這其實(shí)是一個二維的Map,可以查看行數(shù)據(jù) Map row = table.row(18);  System.out.println(row); // 輸出 {"男":"yideng","女":"Lily"}  // 查看列數(shù)據(jù)  Map column = table.column("男");  System.out.println(column); // 輸出 {18:"yideng"}

3.2.4 Multiset 一種用來計數(shù)的Set

Multiset multiset = HashMultiset.create();  multiset.add("apple");  multiset.add("apple"); multiset.add("orange");  System.out.println(multiset.count("apple")); // 輸出 2  // 查看去重的元素  Set set = multiset.elementSet();  System.out.println(set); // 輸出 ["orange","apple"]  // 還能查看沒有去重的元素  Iterator iterator = multiset.iterator();  while (iterator.hasNext()) {      System.out.println(iterator.next());  }  // 還能手動設(shè)置某個元素出現(xiàn)的次數(shù)  multiset.setCount("apple", 5);

到此,關(guān)于“Java常用的工具庫有哪些”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!


名稱欄目:Java常用的工具庫有哪些
轉(zhuǎn)載來于:http://weahome.cn/article/jhceij.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部