Java使用反射调用类的main()方法

发布于 2024-10-16 21:30:05 字数 101 浏览 1 评论 0原文

我需要使用反射从另一个主方法调用 Java 类的主方法。

必须使用反射,以消除被调用的主类的编译时依赖。 直接的方法不会屈服,因为它只识别“公共”和“非静态”方法。 建议?

I need to call the main method of a Java class from another main method using reflection.

Usage of reflection is a must so as to remove compile time dependency of the main class being called.
Straightforward approach is not yielding as it recognizes only 'public' and 'non-static' method.
Suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

这样的小城市 2024-10-23 21:30:05

不应该比调用任何其他函数更复杂:

public static void main(String[] args) throws ClassNotFoundException, SecurityException, NoSuchMethodException, IllegalArgumentException, IllegalAccessException, InvocationTargetException {
    Class<?> cls = Class.forName("pkg1.pkg2.classname");
    Method meth = cls.getMethod("main", String[].class);
    String[] params = null; // init params accordingly
    meth.invoke(null, (Object) params); // static method doesn't have an instance
}

但我真的没有看到它有很多用途,它为您带来的唯一好处是,只要您从不使用另一个函数,您就可以编译程序而无需链接另一个函数特定的代码路径,但如果这就是您需要的,我们就开始吧;)

Shouldn't be any more complicated than calling any other function:

public static void main(String[] args) throws ClassNotFoundException, SecurityException, NoSuchMethodException, IllegalArgumentException, IllegalAccessException, InvocationTargetException {
    Class<?> cls = Class.forName("pkg1.pkg2.classname");
    Method meth = cls.getMethod("main", String[].class);
    String[] params = null; // init params accordingly
    meth.invoke(null, (Object) params); // static method doesn't have an instance
}

But I don't really see many uses for that, the only thing it buys you is that you can compile the program without linking the other one as long as you never use that specific code path, but if that's what you need, here we go ;)

看海 2024-10-23 21:30:05
Method mainMethod = clazz.getDeclaredMethod("main", String[].class);
final Object[] args = new Object[1];
args[0] = new String[]{"1", "2"};
mainMethod.invoke(null, args);
Method mainMethod = clazz.getDeclaredMethod("main", String[].class);
final Object[] args = new Object[1];
args[0] = new String[]{"1", "2"};
mainMethod.invoke(null, args);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文