|
@@ -0,0 +1,98 @@
|
|
|
+/**
|
|
|
+ * Copyright (c) 2011-2014, hubin (jobob@qq.com).
|
|
|
+ *
|
|
|
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
|
+ * use 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.
|
|
|
+ */
|
|
|
+package com.baomidou.mybatisplus.toolkit;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * String工具类
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author D.Yang
|
|
|
+ * @Date 2016-08-18
|
|
|
+ */
|
|
|
+public class StringUtils {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 判断字符串是否为空
|
|
|
+ *
|
|
|
+ * @param str 需要判断字符串
|
|
|
+ * @return 判断结果
|
|
|
+ */
|
|
|
+ public static boolean isEmpty(String str) {
|
|
|
+ return str == null || "".equals(str.trim());
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 判断字符串是否不为空
|
|
|
+ *
|
|
|
+ * @param str 需要判断字符串
|
|
|
+ * @return 判断结果
|
|
|
+ */
|
|
|
+ public static boolean isNotEmpty(String str) {
|
|
|
+ return (str != null) && !"".equals(str.trim());
|
|
|
+ }
|
|
|
+
|
|
|
+ private static final char UNDERLINE = '_';
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 字符串驼峰转下划线格式
|
|
|
+ *
|
|
|
+ * @param param 需要转换的字符串
|
|
|
+ * @return 转换好的字符串
|
|
|
+ */
|
|
|
+ public static String camelToUnderline(String param) {
|
|
|
+ if (isEmpty(param)) {
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+ int len = param.length();
|
|
|
+ StringBuilder sb = new StringBuilder(len);
|
|
|
+ for (int i = 0; i < len; i++) {
|
|
|
+ char c = param.charAt(i);
|
|
|
+ if (Character.isUpperCase(c)) {
|
|
|
+ sb.append(UNDERLINE);
|
|
|
+ sb.append(Character.toLowerCase(c));
|
|
|
+ } else {
|
|
|
+ sb.append(c);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return sb.toString();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 字符串下划线转驼峰格式
|
|
|
+ *
|
|
|
+ * @param param 需要转换的字符串
|
|
|
+ * @return 转换好的字符串
|
|
|
+ */
|
|
|
+ public static String underlineToCamel(String param) {
|
|
|
+ if (isEmpty(param)) {
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+ int len = param.length();
|
|
|
+ StringBuilder sb = new StringBuilder(len);
|
|
|
+ for (int i = 0; i < len; i++) {
|
|
|
+ char c = param.charAt(i);
|
|
|
+ if (c == UNDERLINE) {
|
|
|
+ if (++i < len) {
|
|
|
+ sb.append(Character.toUpperCase(param.charAt(i)));
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ sb.append(c);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return sb.toString();
|
|
|
+ }
|
|
|
+}
|