java部分工具庫使用

1.Java自帶工具方法

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

//如何把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比較兩個字符串是否相等,忽略大小寫  equalsIgnoreCase

  1.3比較兩個對象是否相等 

    當咱們使用equals比較兩個對象是否相等時,還須要對左邊的對象進行判空,否則可能會報空指針異常,可使用java.util包下的Object.equls(strA,strB);java

Object.equals(StrA,strB);

源碼是apache

public static boolean equals(Object strA,Object strB){
    return (a==b)||(a!=null && a.equals(b));
}

  1.4兩個List集合取交集

List<String> list1 = new ArrayList<>();
list1.add("a");
List<String> list2 = new ArrayList<>();
list2.add("b");
list1.retainAll(list2);
System.out.println(list1);//輸出[a,b]

2.apache commons 工具類庫

Apache commons是最強大的,也是使用最普遍的工具類庫,裏面的子庫很是多,下面介紹幾個最經常使用的api

2.1Commons-lang,java.lang的加強版

  建議使用Commons-lang3,優化了一些api,原來的Commons-lang已中止更新app

Maven依賴是:maven

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-lang3</artifactId>
    <version>312.0</version>
</depengency>

2.1.1字符串判空

傳參CharSequence類型是String、StringBuilder、StringBuffer的父類,均可以直接下面方法判空。ide

源碼以下:工具

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 steLen = 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 = "chen";
String capitalize = StringUtils.capitalize(str);
System.out.println(capitalize); //輸出Chen

2.1.3重複拼接字符串

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

2.1.4格式化日期

不再用手寫SimpleDateFormat格式化了post

//Date類型轉String類型
String date = DateFormatUtils.format(new Date(),"yyyy-MM-dd HH:mm:ss");
System.out.println(date);//輸出2021-07-18 23:59:59

//String 類型轉Date類型
Date date = DateUtils.parseDate("2021-07-18 23:59:59","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,"chen");
System.out.println(pair.getLeft()+","+air.getRight());

//返回三個字段
ImmutableTriple<Integer,String,Date> triple = ImmutableTriple.of(1,"chen",new Date());
System.out.println(triple.getLeft()+""+triple.getMiddle()+""+triple.getRight());

2.2commons-collections 集合工具類

Maven依賴是ui

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-collections4</artifactId>
    <version>4.4</version>
</depengency>

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.3common-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","chen");

對象和map互轉

//對象轉map
Map<String,String> map = BeanUtils.describe(user);
System.out.println(map);//輸出{"id":"1","name":"chen"}

//map轉對象
User user1 = new User();
BeanUtils.populate(user1,map);
System.out.println(user1);//輸出{"id":1,"name":"chen"}

2.4commons-io文件流處理

Maven依賴

<dependency>
    <groupId>commons-io</groupId>
    <artifactId>commons-io</artifactId>
    <version>2.8.0</version>
</dependency>

文件處理

File file = new File("you.txt");
//讀取文件
List<String> lines = FileUtils.readLines(file,Charset.defaultCharset());
//寫入文件
FileUtils.writeLines(new File("you2.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<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不能重複,何不實現個翻轉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);

 

posted on 2021-07-18 23:23  Sunshine2  閱讀( 3)  評論( 0編輯  收藏  舉報
相關文章
相關標籤/搜索