简体   繁体   中英

Can I reference a class by String name?

I have a list of utilities that derive from:

abstract public class BaseUtil implements Callable{
    public String name;
    public StreamWrapper data;
    public void setData(StreamWrapper stream){ this.data = stream; }
    private static Class me = BaseUtil.class;
    private static Method[] availableUtilities = me.getDeclaredMethods();
    public static Method[] getUtilities(){ return availableUtilities; }
}

I want to, at each node, be able to assign a utility to it, something like:

Initialize(String utilName){
    activeUtility = utilName;
    gk = new GateKeeper(BaseUtil.getUtilities() <something>);
}

public class GateKeeper {
  GateKeeper(BaseUtil util) {
    this.util = util;
}

private BaseUtil util;

But I'm unsure on how to get the specific utility class from just the String passed in. An example utility is:

public class WordLengthUtil extends BaseUtil {
    private String name = "WordLength";
    public Integer call() {
        System.out.println(this.data);
        return Integer.valueOf(this.data.length());
    }
}

You can use reflection:

String name = "WordLength";
String className = hashMap.get(name);

Callable plugin = (Callable) Class.forName(className).newInstance();

use HashMap to store binding between className and string identifier

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM