好程序员Java培训分享Java程序员经常使用的工具类库,Java世界有不少实用的工具类框架,今天介绍3个使用频率最高的框架。有不少实用的工具类并无所有列出来,只列出了最基础的一部分。java
Apache CommonsApache Commons有不少子项目,经常使用的项目以下:程序员
BeanUtilsredis
提供了一系列对java bean的操做,读取和设置属性值等。api
@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。