好程式設計師Java培訓分享Java程式設計師常用的工具類庫

好程式設計師發表於2020-08-11

   好程式設計師 Java 培訓分享 Java 程式設計師常用的工具類庫 ,Java 世界有很多實用的工具類框架,今天介紹 3 個使用頻率最高的框架。有很多實用的工具類並沒有全部列出來,只列出了最基礎的一部分。

  Apache CommonsApache Commons 有很多子專案,常用的專案如下:

圖片1

  BeanUtils

   提供了一系列對java bean 的操作,讀取和設定屬性值等。

  @Data

  public class User {

  private String username;

  private String password;

  }

  User user = new User();

  BeanUtils.setProperty(user, "username", "li");

  BeanUtils.getProperty(user, "username");

  map bean 的互相轉換:

  // bean->map

  Map<String, String> map = BeanUtils.describe(user);

  // map->bean

  BeanUtils.populate(user, map);

   我們將物件放在快取中通常用redis 中的 hash ,如下:

  #  設定使用者資訊

  hset student name test

  hset student age 10

   這種場景下map bean 的互相轉換的工具類就特別有用。

  Codec

  常見的編碼,解碼方法封裝:

  // Base64

  Base64.encodeBase64String(byte[] binaryData)

  Base64.decodeBase64(String base64String)

  // MD5

  DigestUtils.md5Hex(String data)

  // URL

  URLCodec.decodeUrl(byte[] bytes);

  URLCodec.encodeUrl(BitSet urlsafe, byte[] bytes);

  Collections

  交併差等操作:

  //  判空

  CollectionUtils.isEmpty(collA);

  //  交集

  CollectionUtils.retainAll(collA, collB);

  //  並集

  CollectionUtils.union(collA, collB);

  //  差集

  CollectionUtils.subtract(collA, collB);

  //  判等

  CollectionUtils.isEqualCollection(collA, collB);

  I/O

  IOUtils IO 操作的封裝

  //  複製流

  IOUtils.copy(InputStream input, OutputStream output);

  //  從流中讀取內容,轉為 list

  List<String> line = IOUtils.readLines(InputStream input, Charset encoding);

  FileUtils

  對檔案操作類的封裝

  File file = new File("/show/data.text");

  //  按行讀取檔案

  List<String> lines = FileUtils.readLines(file, "UTF-8");

  //  將字串寫入檔案

  FileUtils.writeStringToFile(file, "test", "UTF-8");

  //  檔案複製

  FileUtils.copyFile(srcFile, destFile);

  Lang

  StringUtils  以下斷言測試透過

  // isEmpty 的實現  cs == null || cs.length() == 0; returntrue

  assertEquals(true, StringUtils.isEmpty(""));

  assertEquals(true, StringUtils.isBlank(null));

  assertEquals(true, StringUtils.isBlank(""));

  //  空格

  assertEquals(true, StringUtils.isBlank(" "));

  //  回車

  assertEquals(true, StringUtils.isBlank(" "));

  Pair Triple  當想返回 2 個或 3 個值,但這幾個值沒有相關性,沒有必要單獨封裝一個物件,就可以用到如下資料結構,返回 Pair Triple 物件

  Pair<Integer, Integer> pair = new ImmutablePair<>(1, 2);

  // 1 2

  System.out.println(pair.getLeft() + " " + pair.getRight());

  Triple<Integer, Integer, Integer> triple = new ImmutableTriple<>(1,2,3);

  // 1 2 3

  System.out.println(triple.getLeft() + " " + triple.getMiddle() + " " + triple.getRight());

  Google Guava

  集合的建立

  //  普通集合的建立 List list = Lists.newArrayList();Set set = Sets.newHashSet();//  不可變集合的建立 ImmutableList list = ImmutableList.of("a", "b", "c");ImmutableSet set = ImmutableSet.of("a", "b");

   不可變集合是執行緒安全的,並且中途不可改變,因為add 等方法是被宣告為過期,並且會丟擲異常。

  //  普通集合的建立

  List<String> list = Lists.newArrayList();

  Set<String> set = Sets.newHashSet();

  //  不可變集合的建立

  ImmutableList<String> list = ImmutableList.of("a", "b", "c");

  ImmutableSet<String> set = ImmutableSet.of("a", "b");

  各種黑科技集合

  // use java

  Map<String, List<Integer>> map = new HashMap<String, List<Integer>>();

  // use guava

  Multimap<String, Integer> map = ArrayListMultimap.create();

  map.put("key1", 1);

  map.put("key1", 2);

  // [1, 2]

  System.out.println(map.get("key1"));

  2 個鍵對映一個值

  Table<String, String, Integer> table = HashBasedTable.create();

  table.put("a", "a", 1);

  table.put("a", "b", 2);

  // 2

  System.out.println(table.get("a", "b"));

  還有很多其他各種型別的集合,不再介紹。

  stop watch

  檢視某段程式碼的執行時間

  Stopwatch stopwatch = Stopwatch.createStarted();

  // do something

  long second = stopwatch.elapsed(TimeUnit.SECONDS);

  TimeUnit  可以指定時間精度

  Joda Time

  jdk1.8 之前,日期操作類常用的只有 java.util.Date java.util.Calendar ,但是這 2 個類的易用性實在太差了, SimpleDateFormat 不是執行緒安全的 。這就逼迫使用者去選擇第三方的日期操作類, Joda Time 就是其中的佼佼者。

  2 者的 api 很相似,如果公司的 jdk 版本在 1.8 以上推薦使用 jdk1.8 新推出的日期類,如果在 1.8 以下推薦使用 Joda Time


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69913864/viewspace-2710763/,如需轉載,請註明出處,否則將追究法律責任。

相關文章