Java世界最常用的工具类库

在这里插入图片描述

Apache Commons

Apache Commons有很多子项目,常用的项目如下

项目作用
BeanUtils对Java Bean进行各种操作,复制对象,属性
Codec处理常用的编码,解码
Collections扩展Java集合框架的操作
I/O输入/输出工具的封装
Langjava基本对象(java.lang) 方法的工具类包

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; return true
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<String> list = Lists.newArrayList();
Set<String> set = Sets.newHashSet();

// 不可变集合的创建
ImmutableList<String> list = ImmutableList.of("a", "b", "c");
ImmutableSet<String> set = ImmutableSet.of("a", "b");

不可变集合是线程安全的,并且中途不可改变,因为add等方法是被声明为过期,并且会抛出异常

public final void add(int index, E element) {
	throw new UnsupportedOperationException();
}

各种黑科技集合

// 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就是其中的佼佼者。后来Java自身也意识到了这个问题,于是jdk1.8大量借鉴了Joda Time的理念,推出了新的日期api,LocalDate
,LocalTime,LocalDateTime等,可以看如下文章了解一下用法、

https://blog.csdn.net/zzti_erlie/article/details/100849192

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

Apache Httpcomponents

很多http工具类都是用Apache Httpcomponents封装的,内容比较多,单开一篇文章把

参考博客

《Java工程师修炼之道》
Google guava工具类的使用
[1]https://juejin.im/post/5b8823c4e51d4538b7766bfa

  • 183
    点赞
  • 1152
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 41
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 41
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Java识堂

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值