我在使用 ClassLoader 时遇到问题。我的代码片段:
[...]
Class<?> appletClass = classLoader.loadClass("path.to.Applet123");
Applet applet = (Applet) appletClass.newInstance();
applet.init();
applet.start();
[...]
而且 Applet123 类不是我的,所以我不能编辑它。但我知道,在 Applet123 类中是这样的:
public void init() {
System.out.println(getParameter("myParameter"));
}
不幸的是它打印null
。
我有什么要添加到我的代码来加载带有myParameter
包含字符串的参数的 Applet123.class,例如“Hello”?
感谢您的回复。