沪ICP备16003146号-2
沪公网安备 31010702004922号
萌ICP备20238488号
网站已运行 8 年 6 天 11 小时 52 分
5 online · 52 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年前 · 烂笔头