|
@@ -0,0 +1,519 @@
|
|
|
+package com.beifan.foxlibc.framework.utils;
|
|
|
+
|
|
|
+/* ************************************************************************
|
|
|
+ *
|
|
|
+ * Copyright (C) 2020 2B键盘 All rights reserved.
|
|
|
+ *
|
|
|
+ * Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
+ * you may not useEnv this file except in compliance with the License.
|
|
|
+ * You may obtain a copy of the License at
|
|
|
+ *
|
|
|
+ * http://www.apache.org/licenses/LICENSE-2.0
|
|
|
+ *
|
|
|
+ * Unless required by applicable law or agreed to in writing, software
|
|
|
+ * distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
+ * See the License for the specific language governing permissions and
|
|
|
+ * limitations under the License.
|
|
|
+ *
|
|
|
+ * ************************************************************************/
|
|
|
+
|
|
|
+/*
|
|
|
+ * Creates on 2020/3/11.
|
|
|
+ */
|
|
|
+
|
|
|
+import java.io.IOException;
|
|
|
+import java.io.PrintWriter;
|
|
|
+import java.io.StringWriter;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.Collections;
|
|
|
+import java.util.Objects;
|
|
|
+import java.util.StringTokenizer;
|
|
|
+import java.util.regex.Pattern;
|
|
|
+
|
|
|
+/**
|
|
|
+ * String工具类
|
|
|
+ *
|
|
|
+ * @author lts
|
|
|
+ */
|
|
|
+public
|
|
|
+final class StringUtils
|
|
|
+{
|
|
|
+
|
|
|
+ // unicode下的空格 \u0000
|
|
|
+ public static final String UNICODE_U0000 = "\u0000";
|
|
|
+
|
|
|
+ // unicode下的空格 \u3000
|
|
|
+ public static final String UNICODE_U3000 = "\u3000";
|
|
|
+
|
|
|
+ /**
|
|
|
+ * {@link #cutstring}方法截取的字符串包含index
|
|
|
+ */
|
|
|
+ public static final int INCLUDE_INDEXSTR = -1;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * {@link #cutstring}方法截取的字符串不包含index
|
|
|
+ */
|
|
|
+ public static final int NONINCLUDE_INDEXSTR = -2;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 字符串是否为空
|
|
|
+ *
|
|
|
+ * @param input 目标字符串
|
|
|
+ * @return true为空,false反之。
|
|
|
+ */
|
|
|
+ public static boolean isEmpty(final CharSequence input) {
|
|
|
+ return input == null
|
|
|
+ || input.length() == 0
|
|
|
+ || UNICODE_U0000.contentEquals(input)
|
|
|
+ || UNICODE_U3000.contentEquals(input);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 两个字符串做比较
|
|
|
+ */
|
|
|
+ public static boolean equals(String x, String y) {
|
|
|
+ return Objects.equals(x, y);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 判断字符串是否不为空
|
|
|
+ *
|
|
|
+ * @return true表示当前不为空,false反之
|
|
|
+ */
|
|
|
+ public static boolean isNotEmpty(final CharSequence input) {
|
|
|
+ return !isEmpty(input);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 判断是不是null字符,或者是空
|
|
|
+ */
|
|
|
+ public static boolean isNull(final CharSequence input) {
|
|
|
+ return input == null || "null".contentEquals(input);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 截取index之前的字符串
|
|
|
+ */
|
|
|
+ public static String cutstring(String input, int index) {
|
|
|
+ if (input == null || isNull(input)) {
|
|
|
+ return input;
|
|
|
+ }
|
|
|
+ return input.substring(0, index);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 截取index之后的字符串
|
|
|
+ */
|
|
|
+ public static String xcutstring(String input, int index) {
|
|
|
+ if (input == null || isNull(input)) {
|
|
|
+ return input;
|
|
|
+ }
|
|
|
+ return input.substring(index);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 截取index之前的字符串
|
|
|
+ */
|
|
|
+ public static String cutstring(String input, String index) {
|
|
|
+ if (!input.contains(index)) {
|
|
|
+ return input;
|
|
|
+ }
|
|
|
+ int ofIndex = input.indexOf(index);
|
|
|
+ return input.substring(0, ofIndex);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 截取index之后的字符串
|
|
|
+ */
|
|
|
+ public static String xcutstring(String input, String index) {
|
|
|
+ if (input == null || isNull(input)) {
|
|
|
+ return input;
|
|
|
+ }
|
|
|
+ return input.substring(input.indexOf(index) + index.length());
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 截取from到index之间的字符,如果from是负值的话那就代表是截取
|
|
|
+ * from到input.length()之间的字符串
|
|
|
+ *
|
|
|
+ * @param input 源字符串
|
|
|
+ * @param index 截取的字符串
|
|
|
+ * @param from 从哪个位置开始截取,如果from是负数那么就代表是
|
|
|
+ * 截取index到input.length()之间的值
|
|
|
+ */
|
|
|
+ public static String cutstring(String input, String index, int from) {
|
|
|
+ if (!input.contains(index)) {
|
|
|
+ return input;
|
|
|
+ }
|
|
|
+ int ofIndex = input.indexOf(index);
|
|
|
+ if (from >= 0) {
|
|
|
+ return input.substring(from, ofIndex);
|
|
|
+ }
|
|
|
+ if (from == INCLUDE_INDEXSTR) {
|
|
|
+ return input.substring((ofIndex));
|
|
|
+ }
|
|
|
+ if (from == NONINCLUDE_INDEXSTR) {
|
|
|
+ return input.substring((ofIndex + 1));
|
|
|
+ }
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取最后一个字符
|
|
|
+ *
|
|
|
+ * @param input 目标字符串
|
|
|
+ * @return 返回该字符串的最后一个字符
|
|
|
+ */
|
|
|
+ public static char lastchar(String input) {
|
|
|
+ return input.charAt(input.length() - 1);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除最后一个字符
|
|
|
+ *
|
|
|
+ * @param input 目标字符串
|
|
|
+ * @return 返回处理后的字符串
|
|
|
+ */
|
|
|
+ public static String removeLastCharacter(String input) {
|
|
|
+ return input.substring(0, input.length() - 1);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除最后一个字符
|
|
|
+ *
|
|
|
+ * @param input 目标字符串
|
|
|
+ */
|
|
|
+ public static void removeLastCharacter(StringBuilder input) {
|
|
|
+ input.deleteCharAt(input.length() - 1);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除最后一个字符
|
|
|
+ *
|
|
|
+ * @param input 目标字符串
|
|
|
+ */
|
|
|
+ public static void removeLastCharacter(StringBuffer input) {
|
|
|
+ input.deleteCharAt(input.length() - 1);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取首字符
|
|
|
+ */
|
|
|
+ public static String getFirstCharacter(String input) {
|
|
|
+ return input.substring(0, 1);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除第一个字符
|
|
|
+ *
|
|
|
+ * @param input 目标字符串
|
|
|
+ * @return 返回处理后的字符串
|
|
|
+ */
|
|
|
+ public static String removeFirstCharacter(String input) {
|
|
|
+ return input.substring(1, input.length());
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除首尾字符
|
|
|
+ */
|
|
|
+ public static String removeHeadAndTail(String input) {
|
|
|
+ return removeFirstCharacter(removeLastCharacter(input));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 判断字符串是不是数字
|
|
|
+ */
|
|
|
+ public static boolean isNumber(String input) {
|
|
|
+ Pattern pattern = Pattern.compile("\\d*");
|
|
|
+ return pattern.matcher(input).matches();
|
|
|
+ }
|
|
|
+
|
|
|
+ public static String asString(Object input) {
|
|
|
+ return asString(input, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static String asString(Object input, String def) {
|
|
|
+ try {
|
|
|
+ if (input != null) {
|
|
|
+ if (input instanceof String) {
|
|
|
+ return (String) input;
|
|
|
+ } else {
|
|
|
+ return input.toString();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } catch (Exception ignored) {
|
|
|
+ }
|
|
|
+ return def;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static Integer asInt(Object input) {
|
|
|
+ return asInt(input, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static Integer asInt(Object input, Integer def) {
|
|
|
+ try {
|
|
|
+ if (input != null) {
|
|
|
+ String strValue = asString(input);
|
|
|
+ return Integer.valueOf(strValue);
|
|
|
+ }
|
|
|
+ } catch (Exception ignored) {
|
|
|
+ }
|
|
|
+ return def;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static Long asLong(Object input) {
|
|
|
+ return asLong(input, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static Long asLong(Object input, Long def) {
|
|
|
+ try {
|
|
|
+ if (input != null) {
|
|
|
+ String strValue = asString(input);
|
|
|
+ return Long.valueOf(strValue);
|
|
|
+ }
|
|
|
+ } catch (Exception ignored) {
|
|
|
+ }
|
|
|
+ return def;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static Float asFloat(Object input) {
|
|
|
+ return asFloat(input, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static Float asFloat(Object input, Float def) {
|
|
|
+ try {
|
|
|
+ if (input != null) {
|
|
|
+ String strValue = asString(input);
|
|
|
+ return Float.valueOf(strValue);
|
|
|
+ }
|
|
|
+ } catch (Exception ignored) {
|
|
|
+ }
|
|
|
+ return def;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static Double asDouble(Object input) {
|
|
|
+ return asDouble(input, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static Double asDouble(Object input, Double def) {
|
|
|
+ try {
|
|
|
+ if (input != null) {
|
|
|
+ String strValue = asString(input);
|
|
|
+ return Double.valueOf(strValue);
|
|
|
+ }
|
|
|
+ } catch (Exception ignored) {
|
|
|
+ }
|
|
|
+ return def;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static Boolean asBoolean(Object input) {
|
|
|
+ return asBoolean(input, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static Boolean asBoolean(Object input, Boolean def) {
|
|
|
+ try {
|
|
|
+ if (input != null) {
|
|
|
+ String strValue = asString(input);
|
|
|
+ return Boolean.valueOf(strValue);
|
|
|
+ }
|
|
|
+ } catch (Exception ignored) {
|
|
|
+ }
|
|
|
+ return def;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static BigDecimal asBigDecimal(Object input) {
|
|
|
+ return asBigDecimal(input, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static BigDecimal asBigDecimal(Object input, BigDecimal def) {
|
|
|
+ try {
|
|
|
+ if (input != null) {
|
|
|
+ String strValue = asString(input);
|
|
|
+ return new BigDecimal(strValue);
|
|
|
+ }
|
|
|
+ } catch (Exception ignored) {
|
|
|
+ }
|
|
|
+ return def;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * String格式化,大约比String.format()快17倍
|
|
|
+ * 格式化的字符为两个花括号"{}"
|
|
|
+ */
|
|
|
+ public static String fmt(String input, Object... args) {
|
|
|
+ if (isEmpty(input)) {
|
|
|
+ return input;
|
|
|
+ }
|
|
|
+ int argsLen = 0;
|
|
|
+ int offset = 0;
|
|
|
+ int subscript = 0;
|
|
|
+ char[] chars = input.toCharArray();
|
|
|
+ StringBuilder builder = new StringBuilder();
|
|
|
+ char previous = '#';
|
|
|
+ for (int i = 0; i < chars.length; i++) {
|
|
|
+ char current = chars[i];
|
|
|
+ if (previous == '{' && current == '}') {
|
|
|
+ if (argsLen >= args.length) {
|
|
|
+ return builder.toString().concat(new String(chars));
|
|
|
+ }
|
|
|
+ char[] temp = new char[(i - offset) - 1];
|
|
|
+ System.arraycopy(chars, offset, temp, 0, (offset = i - 1));
|
|
|
+ Object argv = args[subscript];
|
|
|
+ builder.append(temp).append(argv == null ? "" : argv);
|
|
|
+ temp = new char[chars.length - offset - 2];
|
|
|
+ System.arraycopy(chars, offset + 2, temp, 0, temp.length);
|
|
|
+ // reset
|
|
|
+ chars = temp;
|
|
|
+ subscript++;
|
|
|
+ i = 0;
|
|
|
+ offset = 0;
|
|
|
+ argsLen++;
|
|
|
+ } else {
|
|
|
+ previous = current;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return builder.append(chars).toString();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 将字符串通过size分割出来
|
|
|
+ *
|
|
|
+ * @param delimiter 分隔符
|
|
|
+ * @param size 分割数量
|
|
|
+ * @param character 分割字符
|
|
|
+ * @return 分割后的字符串
|
|
|
+ */
|
|
|
+ public static String join(String delimiter, int size, String character) {
|
|
|
+ return String.join(delimiter, Collections.nCopies(size, character));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 将字符串合并成一行
|
|
|
+ */
|
|
|
+ public static String mergeOneLine(String text) {
|
|
|
+ StringBuilder content = new StringBuilder();
|
|
|
+ StringTokenizer tokenizer = new StringTokenizer(text);
|
|
|
+ while (tokenizer.hasMoreTokens()) {
|
|
|
+ String str = tokenizer.nextToken();
|
|
|
+ content.append(str);
|
|
|
+ }
|
|
|
+ return content.toString();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 替换掉所有为空格的字符
|
|
|
+ */
|
|
|
+ public static String replaceNull(String input, String... patterns) {
|
|
|
+ for (String pattern : patterns) {
|
|
|
+ input = input.replaceAll(pattern, "");
|
|
|
+ }
|
|
|
+ return input.trim().replaceAll(" ", "").trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 对某个字母转换成大写
|
|
|
+ *
|
|
|
+ * @param index 字符串的下标
|
|
|
+ */
|
|
|
+ public static String toUpperCase(String input, int index) {
|
|
|
+ StringBuilder builder = new StringBuilder(input);
|
|
|
+ String value = String.valueOf(input.charAt(index - 1)).toUpperCase();
|
|
|
+ builder.replace(0, 1, value);
|
|
|
+ return builder.toString();
|
|
|
+ }
|
|
|
+
|
|
|
+ public static String toUpperCase(String input) {
|
|
|
+ if (input == null) return null;
|
|
|
+ return input.toUpperCase();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 对某个字母转换成小写
|
|
|
+ *
|
|
|
+ * @param index 字符串的下标
|
|
|
+ */
|
|
|
+ public static String toLowerCase(String input, int index) {
|
|
|
+ StringBuilder builder = new StringBuilder(input);
|
|
|
+ String value = String.valueOf(input.charAt(index - 1)).toLowerCase();
|
|
|
+ builder.replace(0, 1, value);
|
|
|
+ return builder.toString();
|
|
|
+ }
|
|
|
+
|
|
|
+ public static String toLowerCase(String input) {
|
|
|
+ return input.toLowerCase();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 驼峰转下划线
|
|
|
+ */
|
|
|
+ public static String humpToUnderline(String string) {
|
|
|
+ StringBuilder builder = new StringBuilder(string);
|
|
|
+ int temp = 0; // 定位
|
|
|
+ for (int i = 0, len = string.length(); i < len; i++) {
|
|
|
+ if (Character.isUpperCase(string.charAt(i))) {
|
|
|
+ builder.insert(i + temp, "_");
|
|
|
+ temp++;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return builder.toString().toLowerCase();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 下划线转驼峰
|
|
|
+ */
|
|
|
+ public static String underlineToHump(String string) {
|
|
|
+ return characterToHump(string, "_");
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 根据某个字符分割然后转驼峰命名
|
|
|
+ */
|
|
|
+ public static String characterToHump(String string, String ch) {
|
|
|
+ StringBuilder builder = new StringBuilder();
|
|
|
+ String[] strs = string.split(ch);
|
|
|
+ builder.append(strs[0]);
|
|
|
+ for (int i = 1; i < strs.length; i++) {
|
|
|
+ StringBuilder v = new StringBuilder(strs[i]);
|
|
|
+ v.replace(0, 1, String.valueOf(v.charAt(0)).toUpperCase());
|
|
|
+ builder.append(v);
|
|
|
+ }
|
|
|
+ return builder.toString();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 将String数组合并成单个String字符串
|
|
|
+ */
|
|
|
+ public static String newString(String[] inputs) {
|
|
|
+ StringBuilder builder = new StringBuilder();
|
|
|
+ for (String input : inputs) {
|
|
|
+ builder.append(input);
|
|
|
+ }
|
|
|
+ return builder.toString();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取异常的堆栈打印
|
|
|
+ */
|
|
|
+ public static String getStackTrace(Throwable e) {
|
|
|
+ StringWriter strWriter = new StringWriter();
|
|
|
+ PrintWriter printWriter = new PrintWriter(strWriter);
|
|
|
+ try {
|
|
|
+ e.printStackTrace(printWriter);
|
|
|
+ strWriter.close();
|
|
|
+ printWriter.close();
|
|
|
+ } catch (IOException e1) {
|
|
|
+ e1.printStackTrace();
|
|
|
+ }
|
|
|
+ return strWriter.toString();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 清空stringbuilder
|
|
|
+ */
|
|
|
+ public static void clear(StringBuilder builder) {
|
|
|
+ builder.delete(0, builder.length());
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+
|