驼峰命名法(CamelCase)和下划线命名法(UnderScoreCase)之间的转换
Posted 大树叶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了驼峰命名法(CamelCase)和下划线命名法(UnderScoreCase)之间的转换相关的知识,希望对你有一定的参考价值。
本例子在jdk上验证通过!
String field1 = "business_no1";
String field2 = "id";
String field1_L = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, field1); //businessNo1
String field2_L = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, field2); //id
String field1_U = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, field1); //BusinessNo1
String field2_U = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, field2); //Id
String field1_T = CaseFormat.UPPER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, "businessNo1"); //business_no1
String field2_T = CaseFormat.UPPER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, "Id"); //id
以上是关于驼峰命名法(CamelCase)和下划线命名法(UnderScoreCase)之间的转换的主要内容,如果未能解决你的问题,请参考以下文章