将下划线的表达式转换为驼峰表达式(简单代码)

如何将下划线的表达式转换为驼峰表达式

  1. 使用com.google.common.base.CaseFormat

一条语句搞定:CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, 待转换的字符串)

  1. 使用String.split + org.apache.commons.lang.StringUtils

     StringBuilder builder = new StringBuilder();
     Arrays.asList(str.split("_")).forEach(temp -> builder.append(StringUtils.capitalize(temp)));
     return builder.toString();
    

你可能感兴趣的:(将下划线的表达式转换为驼峰表达式(简单代码))