StringTools.java 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. package com.persagy.cameractl.utils;
  2. import java.util.UUID;
  3. import java.util.regex.Matcher;
  4. import java.util.regex.Pattern;
  5. public final class StringTools {
  6. /**
  7. * 获取UUID字符串
  8. *
  9. * @param length 指定字符长度,范围(0,36],若为null则视length=36处理
  10. * @return 固定长度的数字+小写字母+中划线组合的UUID字符串
  11. */
  12. public static String getUUID(Integer length) {
  13. String uuidStr = UUID.randomUUID().toString();
  14. if (null != length) {
  15. length = length > 36 ? 36 : length;
  16. uuidStr = uuidStr.substring(0, length);
  17. }
  18. return uuidStr;
  19. }
  20. /**
  21. * 获取32位长度UUID
  22. * @return 32长度,只包含数字+小写字母
  23. */
  24. public static String getUUID() {
  25. return getUUID(36).replace("-", "");
  26. }
  27. public static void main(String[] args) {
  28. System.out.println(getUUID());
  29. }
  30. /**
  31. * 获取字符串str对应的hash散列结果值
  32. * @param str
  33. * @return 000-999之间的数字字符串
  34. */
  35. public static String getHashNum(String str) {
  36. str = str == null ? "" : str;
  37. // 得到哈希正整数
  38. int hashInt = Math.abs(str.hashCode());
  39. // 设置哈希字符值,长度为4位
  40. hashInt = 100000 + hashInt % 1000;
  41. String hashStr = ("" + hashInt).substring(3);
  42. return hashStr;
  43. }
  44. /**
  45. * 提供空字符串.
  46. */
  47. public static final java.lang.String EMPTY = "";
  48. /**
  49. * 判断字符串是否为null,或者是空串"", 或者是空格串" "
  50. *
  51. * @param str
  52. * @return boolean
  53. */
  54. public static boolean isBlank(String str) {
  55. if (isEmpty(str)) {
  56. return true;
  57. }
  58. return str.trim().length() == 0;
  59. }
  60. /**
  61. * 如果源字符串str为null,空串或空格串则返回默认字符串
  62. *
  63. * @param str 源字符串
  64. * @param defStr 默认字符串
  65. * @return String
  66. */
  67. public static String getDefault(String str, String defStr) {
  68. return isBlank(str) ? defStr : str;
  69. }
  70. /**
  71. * 判断字符串是否为null,或者是空串"" .
  72. *
  73. * @param s
  74. * @return boolean
  75. */
  76. public static boolean isEmpty(String s) {
  77. return (s == null || s.length() == 0);
  78. }
  79. /**
  80. * 判断字符串是否不为null,且不是空串"" .
  81. *
  82. * @param s
  83. * @return boolean
  84. */
  85. public static boolean isNotEmpty(String s) {
  86. return !isEmpty(s);
  87. }
  88. public static final String toString(Object o) {
  89. return o != null ? o.toString() : null;
  90. }
  91. /**
  92. * 判断是否为空格字符串 .
  93. *
  94. * @param cs
  95. * @return boolean
  96. */
  97. public static boolean isBlank(CharSequence cs) {
  98. if (null == cs)
  99. return false;
  100. int length = cs.length();
  101. for (int i = 0; i < length; i++) {
  102. if (!Character.isWhitespace(cs.charAt(i)))
  103. return false;
  104. }
  105. return true;
  106. }
  107. /**
  108. * 比较字符串是否相等,都为null时,返回true .
  109. *
  110. * @param string1
  111. * @param string2
  112. * @return boolean
  113. */
  114. public static boolean equalsWithNull(String string1, String string2) {
  115. if (string1 == null) {
  116. if (string2 == null) {
  117. return true;
  118. } else {
  119. return false;
  120. }
  121. } else {
  122. return string1.equals(string2);
  123. }
  124. }
  125. public static boolean checkIsPhone(String phonenumber) {
  126. String phone = "(^(d{3,4}-)?d{7,8})$|(1[0-9]{10})";
  127. String tregEx = "[0-9]{7,8}"; // 表示a或f 0832-80691990
  128. Pattern p = Pattern.compile(phone);
  129. Matcher m = p.matcher(phonenumber);
  130. Pattern p2 = Pattern.compile(tregEx);
  131. Matcher m2 = p2.matcher(phonenumber);
  132. // String regEx="[1]{1}[3,5,8,6]{1}[0-9]{9}"; //手机
  133. // String tregEx="[0]{1}[0-9]{2,3}-[0-9]{7,8}"; //表示a或f 0832-80691990
  134. return m.matches() || m2.matches();
  135. }
  136. /**
  137. * 判断字符串中是否包含汉字,如字符串为空,返回false .
  138. *
  139. * @param str
  140. * @return boolean
  141. */
  142. public static boolean hasHanZi(String str) {
  143. if (StringTools.isEmpty(str)) {
  144. return false;
  145. }
  146. String regEx = "[\\u4e00-\\u9fa5]";
  147. Pattern pat = Pattern.compile(regEx);
  148. Matcher mat = pat.matcher(str);
  149. return mat.find();
  150. }
  151. /**
  152. * 去除非汉字内容
  153. */
  154. public static String clearNotChinese(String buff){
  155. String tmpString =buff.replaceAll("(?i)[^a-zA-Z0-9\u4E00-\u9FA5]", "");//去掉所有中英文符号
  156. char[] carr = tmpString.toCharArray();
  157. for(int i = 0; i<tmpString.length();i++){
  158. if(carr[i] < 0xFF){
  159. carr[i] = ' ' ;//过滤掉非汉字内容
  160. }
  161. }
  162. return String.copyValueOf(carr).trim();
  163. }
  164. /**
  165. * 字符串中的数字转为*
  166. *
  167. * @param str
  168. * @return String
  169. */
  170. public static String spriceNumberic(String str) {
  171. StringBuffer sb = new StringBuffer();
  172. if (str != null) {
  173. for (int i = 0; i < str.length(); i++) {
  174. if (Character.isDigit(str.charAt(i))) {
  175. sb.append("*");
  176. } else {
  177. sb.append(str.charAt(i));
  178. }
  179. }
  180. }
  181. return sb.toString();
  182. }
  183. /**
  184. * 去除字符里包含的回车(\n)、水平制表符(\t)、空格(\s)、换行(\r) .
  185. *
  186. * @param str
  187. * @return String
  188. */
  189. public static String replaceSpecilSign(String str) {
  190. String dest = "";
  191. if (isNotEmpty(str)) {
  192. Pattern p = Pattern.compile("\\s*|\t|\r|\n");
  193. Matcher m = p.matcher(str);
  194. dest = m.replaceAll("");
  195. }
  196. return dest;
  197. }
  198. /**
  199. * 判断一个字符串是否为数字型字符串 .
  200. *
  201. * @param str
  202. * @return boolean
  203. */
  204. public static boolean isNumberic(String str) {
  205. if (isEmpty(str)) {
  206. return false;
  207. }
  208. Pattern pattern = Pattern.compile("[0-9]*");
  209. return pattern.matcher(str).matches();
  210. }
  211. /**
  212. * 目标字符是否包含正则表达式所给字符 .
  213. *
  214. * @param destStr 目标字符
  215. * @param regEx 正则表达式
  216. * @return boolean
  217. */
  218. public static boolean containString(String destStr, String regEx) {
  219. if (isEmpty(destStr)) {
  220. return false;
  221. }
  222. if (isEmpty(regEx)) {
  223. return false;
  224. }
  225. Pattern p = Pattern.compile(regEx);
  226. Matcher m = p.matcher(destStr);
  227. return m.find();
  228. }
  229. /**
  230. * Description: 判断字符串是否为合法的文件名(不包含后缀).
  231. *
  232. * @param fileName
  233. * @return boolean
  234. */
  235. public static boolean isFileName(String fileName) {
  236. if (fileName == null || fileName.length() > 255) {
  237. return false;
  238. } else if (isBlank(fileName)) {
  239. return true;
  240. } else {
  241. return fileName.matches(
  242. "[^\\s\\\\/:\\*\\?\\\"<>\\|](\\x20|[^\\s\\\\/:\\*\\?\\\"<>\\|])*[^\\s\\\\/:\\*\\?\\\"<>\\|\\.]$");
  243. }
  244. }
  245. /**
  246. * 将字符串首字母大写 .
  247. *
  248. * @param s
  249. * @return String
  250. */
  251. public static String capitalize(CharSequence s) {
  252. if (null == s)
  253. return null;
  254. int len = s.length();
  255. if (len == 0)
  256. return "";
  257. char char0 = s.charAt(0);
  258. if (Character.isUpperCase(char0))
  259. return s.toString();
  260. return new StringBuilder(len).append(Character.toUpperCase(char0)).append(s.subSequence(1, len)).toString();
  261. }
  262. /**
  263. * 判断String是否为null或空
  264. *
  265. * @param params
  266. * @return
  267. */
  268. public static boolean isNull(String... params) {
  269. for (String param : params) {
  270. if (param == null || "".equals(param)) {
  271. return true;
  272. }
  273. }
  274. return false;
  275. }
  276. }