字符串判空

三方库

  • Guava
  • Apache Common Lang3

字符串分隔

split问题

https://www.cnblogs.com/yxmfighting/p/7383013.html

Apache Common StringUtils.split优点
1、已经帮助用户判空。
2、不是正则性能好。
3、当传入””空串的时候,原生的返回数组里有一个元素。而StringUtils返回0个。
Apache Common问题
1、和原生split功能其实是不一样的。具体如下文。
https://blog.csdn.net/lewky_liu/article/details/89166506