camel-name-utils 介绍
用处
用来将字符串在驼峰风格跟下划线风格之间切换。对于一般人可能没用
,对于写orm框架的人有点作用。
例子:
company_name -> companyName
安装方式
添加以下依赖到pom.xml
<dependency> <groupId>org.crazycake</groupId> <artifactId>camel-name-utils</artifactId> <version>1.0.0-RELEASE</version> </dependency>
使用方式
@Test public void testCamel2underscore() { String underscoreName = CamelNameUtils.camel2underscore("AaaBbb"); assertthat(underscoreName, is("aaa_bbb")); } @Test public void testUnderscore2camel() { String camelName = CamelNameUtils.underscore2camel("user_name"); assertthat(camelName,is("userName")); } @Test public void testCapitalize() { String capitalName = CamelNameUtils.capitalize("student"); assertthat(capitalName,is("Student")); }
camel-name-utils 官网
https://github.com/alexxiyang/camel-name-utils
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。