Browse Source

Merge branch 'master' of https://gitee.com/y_project/RuoYi

pull/60/MERGE
RuoYi 6 years ago
parent
commit
87c38706cd
  1. 44
      ruoyi-common/src/main/java/com/ruoyi/common/utils/StringUtils.java

44
ruoyi-common/src/main/java/com/ruoyi/common/utils/StringUtils.java

@ -259,38 +259,36 @@ public class StringUtils extends org.apache.commons.lang3.StringUtils
/**
* 下划线转驼峰命名
*/
public static String toUnderScoreCase(String s)
{
if (s == null)
{
public static String toUnderScoreCase(String str) {
if (str == null) {
return null;
}
StringBuilder sb = new StringBuilder();
boolean upperCase = false;
for (int i = 0; i < s.length(); i++)
{
char c = s.charAt(i);
//前置字符是否大写
boolean preCharIsUpperCase = true;
//当前字符是否大写
boolean curreCharIsUpperCase = true;
//下一字符是否大写
boolean nexteCharIsUpperCase = true;
for (int i = 0; i < str.length(); i++) {
char c = str.charAt(i);
if (i > 0) {
preCharIsUpperCase = Character.isUpperCase(str.charAt(i-1));;
} else {
preCharIsUpperCase = false;
}
boolean nextUpperCase = true;
curreCharIsUpperCase = Character.isUpperCase(c);
if (i < (s.length() - 1))
{
nextUpperCase = Character.isUpperCase(s.charAt(i + 1));
if (i < (str.length() - 1)) {
nexteCharIsUpperCase = Character.isUpperCase(str.charAt(i + 1));
}
if ((i > 0) && Character.isUpperCase(c))
{
if (!upperCase || !nextUpperCase)
{
if (preCharIsUpperCase && curreCharIsUpperCase && !nexteCharIsUpperCase) {
sb.append(SEPARATOR);
} else if ((i !=0 && !preCharIsUpperCase) && curreCharIsUpperCase) {
sb.append(SEPARATOR);
}
upperCase = true;
}
else
{
upperCase = false;
}
sb.append(Character.toLowerCase(c));
}

Loading…
Cancel
Save