JAVA反射-根据某个对象的名称和方法去执行该方法

Posted silencemaker1221

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA反射-根据某个对象的名称和方法去执行该方法相关的知识,希望对你有一定的参考价值。

package com.citic.util;

import java.lang.reflect.*;
import java.util.HashMap;

import com.citic.util.comm.*;

/**
 * 根据某个对象的名称和方法去执行该方法
 * @author db2admin
 *
 */
public class ReflectUtil { 
    public static String methodName="execute";
    public static int debuglevel=8;
    public static HashMap<String,String[]> preexecute(String className,String xmlOder,String msgid){
        //返回有一般预设两个code,message
        return execute(className,"pre"+methodName,xmlOder,msgid);
    }
    
    public static HashMap<String,String[]> execute(String className,String xmlOder,String msgid){
        return execute(className,methodName,xmlOder,msgid);
    }
    
    @SuppressWarnings("unchecked")
    public static HashMap<String,String[]> execute(String className,String methodName,String xmlOder,String msgid) {
        HashMap<String,String[]> hm=new HashMap<String,String[]>();
        Method m1;
        Class<?> clazz;
        Object obj;
        String tb = ConfigFileUtil.getValue("SCHEMAPREFIX1")
                + ConfigFileUtil.getValue("T" + xmlOder);
        CommFun.log(debuglevel, "调用类:" + className + ",方法:" + methodName
                + ",参数:" + msgid+",表名:"+tb+",xmlOrder:"+xmlOder);
        try {
            if("".equals(tb)||tb==null){
                throw new Exception(xmlOder+"对应表名为空");
            }
            clazz=Class.forName(className);
            obj=clazz.newInstance();
            //解决父类调用问题
            while(true){
                try{
                    m1=obj.getClass().getDeclaredMethod(methodName, String.class,String.class,String.class);
                    CommFun.log(clazz.toString()+","+obj.toString()+","+m1.toString());
                }catch(NoSuchMethodException ne){
                    clazz=clazz.getSuperclass();
                    obj=clazz.newInstance();
                    CommFun.log(clazz.toString()+","+obj.toString());
                    continue;
                }
                break;
            }
            hm=(HashMap<String, String[]>) m1.invoke(obj,xmlOder,msgid,tb);
        } catch (Exception e) {
            CommFun.log("---------");
            e.printStackTrace();
            CommFun.log("["+e.toString()+"]");
        }
        return hm;
    }
}

 

以上是关于JAVA反射-根据某个对象的名称和方法去执行该方法的主要内容,如果未能解决你的问题,请参考以下文章

Python 反射

java检测对象中是不是存在某个属性

java 27 - 8 反射之 通过反射来设置某个对象的某个属性为指定值

Python的类反射机制

Java反射理解-- 方法反射的基本操作

Java反射获取类和对象信息全解析