gpt4 book ai didi

Java - 运行外部代码

转载 作者:行者123 更新时间:2023-11-29 05:47:00 25 4
gpt4 key购买 nike

我想要一个可以读取 .CLASS 文件并运行该代码的 Java 程序,将其自身用作 .CLASS 文件的库。这有可能吗?

最佳答案

java.lang.ClassLoader

将帮助您加载外部类。

java.lang.reflect.Method

将帮助您调用加载的外部类的方法。

小例子:

ArrayList<URL> urls = new ArrayList<URL>();
urls.add(new File("/path/to/your.class").toURI().toURL()); //can add several..

ClassLoader cl = new URLClassLoader(urls.toArray(new URL[urls.size()]));
Class<?> c;
c = Class.forName("your.class.name", false, cl); //now you have your class

Method m = c.getMethod("main", String[].class); //now your have your method
m.invoke(null, new Object[] { "argument1", "argument2" }); //now you "run that code"

我没有运行任何东西,我只是写它来向您展示一些可以帮助您的工具。

关于Java - 运行外部代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15509828/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com