删除Bean方法前缀
//nowjava.com - 时 代 Java 提 供 //package com.nowjava; public class Main { public static String removeBeanMethodPrefix(String methodName) { if (methodName.startsWith("get")) { //NOI18N methodName = methodName.replaceFirst("get", ""); } if (methodName.startsWith("set")) { //NOI18N methodName = methodName.replaceFirst("set", ""); } if (methodName.startsWith("is")) { //NOI18N methodName = methodName.