StringUtils.java 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579
  1. package com.shanghaichengdi.ghjgitem.util;
  2. import com.shanghaichengdi.ghjgitem.constant.Constants;
  3. import java.util.ArrayList;
  4. import java.util.Collection;
  5. import java.util.HashSet;
  6. import java.util.List;
  7. import java.util.Map;
  8. import java.util.Set;
  9. import org.springframework.util.AntPathMatcher;
  10. /**
  11. * 字符串工具类
  12. *
  13. * @author ruoyi
  14. */
  15. public class StringUtils extends org.apache.commons.lang3.StringUtils {
  16. /**
  17. * 空字符串
  18. */
  19. private static final String NULLSTR = "";
  20. /**
  21. * 下划线
  22. */
  23. private static final char SEPARATOR = '_';
  24. /**
  25. * 星号
  26. */
  27. private static final char ASTERISK = '*';
  28. /**
  29. * 获取参数不为空值
  30. *
  31. * @param value defaultValue 要判断的value
  32. * @return value 返回值
  33. */
  34. public static <T> T nvl(T value, T defaultValue) {
  35. return value != null ? value : defaultValue;
  36. }
  37. /**
  38. * * 判断一个Collection是否为空, 包含List,Set,Queue
  39. *
  40. * @param coll 要判断的Collection
  41. * @return true:为空 false:非空
  42. */
  43. public static boolean isEmpty(Collection<?> coll) {
  44. return isNull(coll) || coll.isEmpty();
  45. }
  46. /**
  47. * * 判断一个Collection是否非空,包含List,Set,Queue
  48. *
  49. * @param coll 要判断的Collection
  50. * @return true:非空 false:空
  51. */
  52. public static boolean isNotEmpty(Collection<?> coll) {
  53. return !isEmpty(coll);
  54. }
  55. /**
  56. * * 判断一个对象数组是否为空
  57. *
  58. * @param objects 要判断的对象数组 * @return true:为空 false:非空
  59. */
  60. public static boolean isEmpty(Object[] objects) {
  61. return isNull(objects) || (objects.length == 0);
  62. }
  63. /**
  64. * * 判断一个对象数组是否非空
  65. *
  66. * @param objects 要判断的对象数组
  67. * @return true:非空 false:空
  68. */
  69. public static boolean isNotEmpty(Object[] objects) {
  70. return !isEmpty(objects);
  71. }
  72. /**
  73. * * 判断一个Map是否为空
  74. *
  75. * @param map 要判断的Map
  76. * @return true:为空 false:非空
  77. */
  78. public static boolean isEmpty(Map<?, ?> map) {
  79. return isNull(map) || map.isEmpty();
  80. }
  81. /**
  82. * * 判断一个Map是否为空
  83. *
  84. * @param map 要判断的Map
  85. * @return true:非空 false:空
  86. */
  87. public static boolean isNotEmpty(Map<?, ?> map) {
  88. return !isEmpty(map);
  89. }
  90. /**
  91. * * 判断一个字符串是否为空串
  92. *
  93. * @param str String
  94. * @return true:为空 false:非空
  95. */
  96. public static boolean isEmpty(String str) {
  97. return isNull(str) || NULLSTR.equals(str.trim());
  98. }
  99. /**
  100. * * 判断一个字符串是否为非空串
  101. *
  102. * @param str String
  103. * @return true:非空串 false:空串
  104. */
  105. public static boolean isNotEmpty(String str) {
  106. return !isEmpty(str);
  107. }
  108. /**
  109. * * 判断一个对象是否为空
  110. *
  111. * @param object Object
  112. * @return true:为空 false:非空
  113. */
  114. public static boolean isNull(Object object) {
  115. return object == null;
  116. }
  117. /**
  118. * * 判断一个对象是否非空
  119. *
  120. * @param object Object
  121. * @return true:非空 false:空
  122. */
  123. public static boolean isNotNull(Object object) {
  124. return !isNull(object);
  125. }
  126. /**
  127. * * 判断一个对象是否是数组类型(Java基本型别的数组)
  128. *
  129. * @param object 对象
  130. * @return true:是数组 false:不是数组
  131. */
  132. public static boolean isArray(Object object) {
  133. return isNotNull(object) && object.getClass().isArray();
  134. }
  135. /**
  136. * 去空格
  137. */
  138. public static String trim(String str) {
  139. return (str == null ? "" : str.trim());
  140. }
  141. /**
  142. * 替换指定字符串的指定区间内字符为"*"
  143. *
  144. * @param str 字符串
  145. * @param startInclude 开始位置(包含)
  146. * @param endExclude 结束位置(不包含)
  147. * @return 替换后的字符串
  148. */
  149. public static String hide(CharSequence str, int startInclude, int endExclude) {
  150. if (isEmpty(str)) {
  151. return NULLSTR;
  152. }
  153. final int strLength = str.length();
  154. if (startInclude > strLength) {
  155. return NULLSTR;
  156. }
  157. if (endExclude > strLength) {
  158. endExclude = strLength;
  159. }
  160. if (startInclude > endExclude) {
  161. // 如果起始位置大于结束位置,不替换
  162. return NULLSTR;
  163. }
  164. final char[] chars = new char[strLength];
  165. for (int i = 0; i < strLength; i++) {
  166. if (i >= startInclude && i < endExclude) {
  167. chars[i] = ASTERISK;
  168. } else {
  169. chars[i] = str.charAt(i);
  170. }
  171. }
  172. return new String(chars);
  173. }
  174. /**
  175. * 截取字符串
  176. *
  177. * @param str 字符串
  178. * @param start 开始
  179. * @return 结果
  180. */
  181. public static String substring(final String str, int start) {
  182. if (str == null) {
  183. return NULLSTR;
  184. }
  185. if (start < 0) {
  186. start = str.length() + start;
  187. }
  188. if (start < 0) {
  189. start = 0;
  190. }
  191. if (start > str.length()) {
  192. return NULLSTR;
  193. }
  194. return str.substring(start);
  195. }
  196. /**
  197. * 截取字符串
  198. *
  199. * @param str 字符串
  200. * @param start 开始
  201. * @param end 结束
  202. * @return 结果
  203. */
  204. public static String substring(final String str, int start, int end) {
  205. if (str == null) {
  206. return NULLSTR;
  207. }
  208. if (end < 0) {
  209. end = str.length() + end;
  210. }
  211. if (start < 0) {
  212. start = str.length() + start;
  213. }
  214. if (end > str.length()) {
  215. end = str.length();
  216. }
  217. if (start > end) {
  218. return NULLSTR;
  219. }
  220. if (start < 0) {
  221. start = 0;
  222. }
  223. if (end < 0) {
  224. end = 0;
  225. }
  226. return str.substring(start, end);
  227. }
  228. /**
  229. * 判断是否为空,并且不是空白字符
  230. *
  231. * @param str 要判断的value
  232. * @return 结果
  233. */
  234. public static boolean hasText(String str) {
  235. return (str != null && !str.isEmpty() && containsText(str));
  236. }
  237. private static boolean containsText(CharSequence str) {
  238. int strLen = str.length();
  239. for (int i = 0; i < strLen; i++) {
  240. if (!Character.isWhitespace(str.charAt(i))) {
  241. return true;
  242. }
  243. }
  244. return false;
  245. }
  246. /**
  247. * 格式化文本, {} 表示占位符<br> 此方法只是简单将占位符 {} 按照顺序替换为参数<br> 如果想输出 {} 使用 \\转义 { 即可,如果想输出 {} 之前的 \ 使用双转义符
  248. * \\\\ 即可<br> 例:<br> 通常使用:format("this is {} for {}", "a", "b") -> this is a for b<br> 转义{}:
  249. * format("this is \\{} for {}", "a", "b") -> this is \{} for a<br> 转义\: format("this is \\\\{}
  250. * for {}", "a", "b") -> this is \a for b<br>
  251. *
  252. * @param template 文本模板,被替换的部分用 {} 表示
  253. * @param params 参数值
  254. * @return 格式化后的文本
  255. */
  256. public static String format(String template, Object... params) {
  257. if (isEmpty(params) || isEmpty(template)) {
  258. return template;
  259. }
  260. return StrFormatter.format(template, params);
  261. }
  262. /**
  263. * 是否为http(s)://开头
  264. *
  265. * @param link 链接
  266. * @return 结果
  267. */
  268. public static boolean ishttp(String link) {
  269. return StringUtils.startsWithAny(link, Constants.HTTP, Constants.HTTPS);
  270. }
  271. /**
  272. * 字符串转set
  273. *
  274. * @param str 字符串
  275. * @param sep 分隔符
  276. * @return set集合
  277. */
  278. public static final Set<String> str2Set(String str, String sep) {
  279. return new HashSet<String>(str2List(str, sep, true, false));
  280. }
  281. /**
  282. * 字符串转list
  283. *
  284. * @param str 字符串
  285. * @param sep 分隔符
  286. * @param filterBlank 过滤纯空白
  287. * @param trim 去掉首尾空白
  288. * @return list集合
  289. */
  290. public static final List<String> str2List(String str, String sep, boolean filterBlank,
  291. boolean trim) {
  292. List<String> list = new ArrayList<String>();
  293. if (StringUtils.isEmpty(str)) {
  294. return list;
  295. }
  296. // 过滤空白字符串
  297. if (filterBlank && StringUtils.isBlank(str)) {
  298. return list;
  299. }
  300. String[] split = str.split(sep);
  301. for (String string : split) {
  302. if (filterBlank && StringUtils.isBlank(string)) {
  303. continue;
  304. }
  305. if (trim) {
  306. string = string.trim();
  307. }
  308. list.add(string);
  309. }
  310. return list;
  311. }
  312. /**
  313. * 判断给定的collection列表中是否包含数组array 判断给定的数组array中是否包含给定的元素value
  314. *
  315. * @param collection 给定的集合
  316. * @param array 给定的数组
  317. * @return boolean 结果
  318. */
  319. public static boolean containsAny(Collection<String> collection, String... array) {
  320. if (isEmpty(collection) || isEmpty(array)) {
  321. return false;
  322. } else {
  323. for (String str : array) {
  324. if (collection.contains(str)) {
  325. return true;
  326. }
  327. }
  328. return false;
  329. }
  330. }
  331. /**
  332. * 查找指定字符串是否包含指定字符串列表中的任意一个字符串同时串忽略大小写
  333. *
  334. * @param cs 指定字符串
  335. * @param searchCharSequences 需要检查的字符串数组
  336. * @return 是否包含任意一个字符串
  337. */
  338. public static boolean containsAnyIgnoreCase(CharSequence cs,
  339. CharSequence... searchCharSequences) {
  340. if (isEmpty(cs) || isEmpty(searchCharSequences)) {
  341. return false;
  342. }
  343. for (CharSequence testStr : searchCharSequences) {
  344. if (containsIgnoreCase(cs, testStr)) {
  345. return true;
  346. }
  347. }
  348. return false;
  349. }
  350. /**
  351. * 驼峰转下划线命名
  352. */
  353. public static String toUnderScoreCase(String str) {
  354. if (str == null) {
  355. return null;
  356. }
  357. StringBuilder sb = new StringBuilder();
  358. // 前置字符是否大写
  359. boolean preCharIsUpperCase = true;
  360. // 当前字符是否大写
  361. boolean curreCharIsUpperCase = true;
  362. // 下一字符是否大写
  363. boolean nexteCharIsUpperCase = true;
  364. for (int i = 0; i < str.length(); i++) {
  365. char c = str.charAt(i);
  366. if (i > 0) {
  367. preCharIsUpperCase = Character.isUpperCase(str.charAt(i - 1));
  368. } else {
  369. preCharIsUpperCase = false;
  370. }
  371. curreCharIsUpperCase = Character.isUpperCase(c);
  372. if (i < (str.length() - 1)) {
  373. nexteCharIsUpperCase = Character.isUpperCase(str.charAt(i + 1));
  374. }
  375. if (preCharIsUpperCase && curreCharIsUpperCase && !nexteCharIsUpperCase) {
  376. sb.append(SEPARATOR);
  377. } else if ((i != 0 && !preCharIsUpperCase) && curreCharIsUpperCase) {
  378. sb.append(SEPARATOR);
  379. }
  380. sb.append(Character.toLowerCase(c));
  381. }
  382. return sb.toString();
  383. }
  384. /**
  385. * 是否包含字符串
  386. *
  387. * @param str 验证字符串
  388. * @param strs 字符串组
  389. * @return 包含返回true
  390. */
  391. public static boolean inStringIgnoreCase(String str, String... strs) {
  392. if (str != null && strs != null) {
  393. for (String s : strs) {
  394. if (str.equalsIgnoreCase(trim(s))) {
  395. return true;
  396. }
  397. }
  398. }
  399. return false;
  400. }
  401. /**
  402. * 将下划线大写方式命名的字符串转换为驼峰式。如果转换前的下划线大写方式命名的字符串为空,则返回空字符串。 例如:HELLO_WORLD->HelloWorld
  403. *
  404. * @param name 转换前的下划线大写方式命名的字符串
  405. * @return 转换后的驼峰式命名的字符串
  406. */
  407. public static String convertToCamelCase(String name) {
  408. StringBuilder result = new StringBuilder();
  409. // 快速检查
  410. if (name == null || name.isEmpty()) {
  411. // 没必要转换
  412. return "";
  413. } else if (!name.contains("_")) {
  414. // 不含下划线,仅将首字母大写
  415. return name.substring(0, 1).toUpperCase() + name.substring(1);
  416. }
  417. // 用下划线将原始字符串分割
  418. String[] camels = name.split("_");
  419. for (String camel : camels) {
  420. // 跳过原始字符串中开头、结尾的下换线或双重下划线
  421. if (camel.isEmpty()) {
  422. continue;
  423. }
  424. // 首字母大写
  425. result.append(camel.substring(0, 1).toUpperCase());
  426. result.append(camel.substring(1).toLowerCase());
  427. }
  428. return result.toString();
  429. }
  430. /**
  431. * 驼峰式命名法 例如:user_name->userName
  432. */
  433. public static String toCamelCase(String s) {
  434. if (s == null) {
  435. return null;
  436. }
  437. if (s.indexOf(SEPARATOR) == -1) {
  438. return s;
  439. }
  440. s = s.toLowerCase();
  441. StringBuilder sb = new StringBuilder(s.length());
  442. boolean upperCase = false;
  443. for (int i = 0; i < s.length(); i++) {
  444. char c = s.charAt(i);
  445. if (c == SEPARATOR) {
  446. upperCase = true;
  447. } else if (upperCase) {
  448. sb.append(Character.toUpperCase(c));
  449. upperCase = false;
  450. } else {
  451. sb.append(c);
  452. }
  453. }
  454. return sb.toString();
  455. }
  456. /**
  457. * 查找指定字符串是否匹配指定字符串列表中的任意一个字符串
  458. *
  459. * @param str 指定字符串
  460. * @param strs 需要检查的字符串数组
  461. * @return 是否匹配
  462. */
  463. public static boolean matches(String str, List<String> strs) {
  464. if (isEmpty(str) || isEmpty(strs)) {
  465. return false;
  466. }
  467. for (String pattern : strs) {
  468. if (isMatch(pattern, str)) {
  469. return true;
  470. }
  471. }
  472. return false;
  473. }
  474. /**
  475. * 判断url是否与规则配置: ? 表示单个字符; * 表示一层路径内的任意字符串,不可跨层级; ** 表示任意层路径;
  476. *
  477. * @param pattern 匹配规则
  478. * @param url 需要匹配的url
  479. * @return
  480. */
  481. public static boolean isMatch(String pattern, String url) {
  482. AntPathMatcher matcher = new AntPathMatcher();
  483. return matcher.match(pattern, url);
  484. }
  485. @SuppressWarnings("unchecked")
  486. public static <T> T cast(Object obj) {
  487. return (T) obj;
  488. }
  489. /**
  490. * 数字左边补齐0,使之达到指定长度。注意,如果数字转换为字符串后,长度大于size,则只保留 最后size个字符。
  491. *
  492. * @param num 数字对象
  493. * @param size 字符串指定长度
  494. * @return 返回数字的字符串格式,该字符串为指定长度。
  495. */
  496. public static final String padl(final Number num, final int size) {
  497. return padl(num.toString(), size, '0');
  498. }
  499. /**
  500. * 字符串左补齐。如果原始字符串s长度大于size,则只保留最后size个字符。
  501. *
  502. * @param s 原始字符串
  503. * @param size 字符串指定长度
  504. * @param c 用于补齐的字符
  505. * @return 返回指定长度的字符串,由原字符串左补齐或截取得到。
  506. */
  507. public static final String padl(final String s, final int size, final char c) {
  508. final StringBuilder sb = new StringBuilder(size);
  509. if (s != null) {
  510. final int len = s.length();
  511. if (s.length() <= size) {
  512. for (int i = size - len; i > 0; i--) {
  513. sb.append(c);
  514. }
  515. sb.append(s);
  516. } else {
  517. return s.substring(len - size, len);
  518. }
  519. } else {
  520. for (int i = size; i > 0; i--) {
  521. sb.append(c);
  522. }
  523. }
  524. return sb.toString();
  525. }
  526. }