沪ICP备16003146号-2
沪公网安备 31010702004922号
萌ICP备20238488号
网站已运行 7 年 363 天 12 小时 44 分
11 online · 51 ms
Tag
🔖java下划线转驼峰
1篇
String工具 主要对 StringUtils 的一些方法进行重写,达到更方便的使用 /**
* 字符串工具类
*
* @author Chrison
*/
public class StringUtil extends org.apache.commons.lang3.StringUtils
{
/** 空字符串 */
private static final String NULLSTR = "";
/** 下划线 */
private static final char SEPARATOR = '_';
/
1年前 · 烂笔头