请问eclipse下将如“COL_KEY_FLAG”转换成驼峰样式:“colKeyFlag”的快捷键是什么?
没有的。要本身写的
我给你写个
public class Test {
public static void main(String args[]) {
String name="COL_KEY_FLAG";
System。
out。println(camel(name));
public static String camel(String str){
String returnStr="";//要返回的值
str=str。
toLowerCase();//先把要转换的名字全转换为小写
String[] arr=str。split("_");//按照_来转换为数组
returnStr =arr[0];//第一组必定是小写,先拼接
for (int i = 1; i length; i ) {//从第二级起头
StringBuilder strbu = new StringBuilder(arr[i]);
strbu。setCharAt(0, Character。
toTitleCase(arr[i]。charAt(0)));//以上两句是把每一个单词的第一个字母大写
returnStr =strbu。toString();//拼接
return returnStr;//返回
camel()是办法。
你能够如许按照我的办法来把契合标准的单词转换为驼峰款式。但是留意必需要用_分隔。
0