虽然看不懂是为什么,但是真的很好用,可用于反射获取bean中的get方法
public static String getMethodName(String fildeName)throws Exception {
byte[]items =fildeName.getBytes();
items[0] = (byte) ((char)items[0] -'a' +'A');
return new String(items);
}
虽然看不懂是为什么,但是真的很好用,可用于反射获取bean中的get方法
public static String getMethodName(String fildeName)throws Exception {
byte[]items =fildeName.getBytes();
items[0] = (byte) ((char)items[0] -'a' +'A');
return new String(items);
}