从方法列表中按名称搜索方法
//package com.nowjava; /* n o w j a v a . c o m */ import java.lang.reflect.Method; public class Main { public static Method searchMethodByName(Method[] methods, String name) { for (Method method : methods) { if (method.getName().equals(name)) { return method; } } return null; } }