English 中文(简体)
我如何在运行时加载一个接口, 并调用该类的方法?
原标题:How can i load an implementation of an interface at runtime and call the methods of said class?

尝试使用 extcos 来动态连接运行时的界面执行, 这样用户就可以自己编组、 编译和使用我的程序。 虽然我无法解开课程 。 使用类似课程的工作在我脑海中太过头了, 但看起来像 extcos 做大部分工作 。

I try to load the class right as my program enters main. Here is what i have in there atm:

    final Set<Class<? extends IAlgorithm>> classes = new HashSet<Class<? extends IAlgorithm>>();

    ComponentScanner scanner = new ComponentScanner();
    scanner.getClasses(new ComponentQuery() {
        @Override
        protected void query() {
            select().
            from("logic").
            andStore(thoseImplementing(IAlgorithm.class).into(classes)).
            returning(none());
        }
    });

我如何使用这个例子来称呼我实施IAlgorithm的方法?

http://sourceforge.net/projects/extcos/" rel="nown" >http://sourceforge.net/projects/extcos/

最佳回答

我不知道 extcos, 但看起来似乎 class class 包含 java. lang.Classs<? & gt; 对象。 您应该能够创建这些类别的例子

IAlgorithm ia = classes.iterator().next().newInstance();

用于 no-arg- Constructor 案件;或 需要援引非违约构建器的:

Class<? extends IAlgorithm> cls = classes.iterator().next();
Constructor<? extends IAlgorithm> c = cls.getConstructor(...);
IAlgorithm ia = c.newInstance(...);

其中 ... 分别代表上文第一和第二种使用法中的构建参数参数类型和数值。

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...