我可以将参数传递给动态创建的 类 吗?
Can I pass parameters to my dynamically created classes?
我在运行时成功地从外部 MyClass.class
文件加载了 class,并且我能够调用它的方法,前提是我知道它们的名称,而我确实知道这些方法。
我遇到的问题是我不知道如何将参数传递给我正在加载的 class 的构造函数。
如何修改它以将参数传递给 MyClass
的构造函数?另外,如何访问 MyClass
的 public 变量:infoToAccess
?
这是我正在处理的文件。 (请记住,ClassLoaderExample.pde 是为 Processing 编写的,但除了 sketchPath("")
和缺少 main
函数外,它是相同的。
ClassLoaderExample.pde:加载class的主文件:
import java.io.File;
import java.net.URL;
import java.net.URLClassLoader;
import java.net.MalformedURLException;
import java.lang.ClassLoader;
import java.lang.reflect.Method;
import java.lang.reflect.InvocationTargetException;
/////// FILE STRUCTURE /////
// ClassLoaderExample //
// --this file //
// --tmp //
// ----MyClass.class //
////////////////////////////
// TODO
// Send parameter to MyClass constructor (by reference)
// Get public int number from MyClass
void setup()
{
String className = "MyClass";
Object instance;
Method updateMethod;
// sketchPath("") returns the directory this file is in
File file = new File(sketchPath(""));
try
{
URL url = file.toURL();
URL[] urls = new URL[]{url};
ClassLoader classLoader = new URLClassLoader(urls);
Class<?> loadedClass = classLoader.loadClass("tmp."+className);
try
{
instance = loadedClass.newInstance();
updateMethod = loadedClass.getDeclaredMethod("update");
// Calls MyClass's update() method
try
{
updateMethod.invoke(instance);
}
catch (InvocationTargetException e) {System.out.println(e);}
catch (IllegalAccessException e) {System.out.println(e);}
}
catch (InstantiationException e) {System.out.println(e);}
catch (IllegalAccessException e) {System.out.println(e);}
catch (NoSuchMethodException e) {System.out.println(e);}
}
catch (MalformedURLException e) {System.out.println(e);}
catch (ClassNotFoundException e) {System.out.println(e);}
}
MyClass.java:我正在加载的class:
package tmp;
public class MyClass
{
public int infoToAccess = 1337;
public MyClass(int i)
{
System.out.println("MyClass constructor was called with numebr: " + i);
}
public void update()
{
System.out.println("Update was called.");
}
}
感谢您对此的任何帮助!
正如我在评论中写的link,你可以在这个调用中传递参数
updateMethod = loadedClass.getDeclaredMethod("update", 参数在这里);
那么您应该可以调用带有参数的方法
如果你想将参数传递给你不能使用的构造函数getInstance()
,你必须获取构造函数对象并在那里传递参数。
示例:
Constructor constructor = aClass.getConstructor(new Class[]{String.class});
MyObject myObject = (MyObject) constructor.newInstance("constructor-arg1");
在此处查看教程:Java Reflection - Constructors
您可以使用您加载的 class 来获取构造函数
您需要使用它来创建新实例。
import java.lang.reflect.Constructor;
...
Class<?> loadedClass = classLoader.loadClass("tmp."+className);
try {
Constructor<?> ctor=loadedClass.getConstructor(int.class);
ctor.newInstance(42);
...
}
...
对于您询问的两件事,您都需要使用反射:
Class<?> loadedClass = classLoader.loadClass("tmp." + className);
Object oInstance = null;
try {
Constructor<?> c = loadedClass.getConstructor(Integer.class);
oInstance = c.newInstance(10);
} catch (InstantiationException | IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
//Handle the possibility that you cannot access this constructor
}
要访问对象的 public 字段:
try {
Field field = loadedClass.getField("infoToAccess");
int fieldValue = field.getInt(oInstance);
} catch (NoSuchFieldException | IllegalAccessException e) {
//Handle the possibility that you cannot access this field
}
我在运行时成功地从外部 MyClass.class
文件加载了 class,并且我能够调用它的方法,前提是我知道它们的名称,而我确实知道这些方法。
我遇到的问题是我不知道如何将参数传递给我正在加载的 class 的构造函数。
如何修改它以将参数传递给 MyClass
的构造函数?另外,如何访问 MyClass
的 public 变量:infoToAccess
?
这是我正在处理的文件。 (请记住,ClassLoaderExample.pde 是为 Processing 编写的,但除了 sketchPath("")
和缺少 main
函数外,它是相同的。
ClassLoaderExample.pde:加载class的主文件:
import java.io.File;
import java.net.URL;
import java.net.URLClassLoader;
import java.net.MalformedURLException;
import java.lang.ClassLoader;
import java.lang.reflect.Method;
import java.lang.reflect.InvocationTargetException;
/////// FILE STRUCTURE /////
// ClassLoaderExample //
// --this file //
// --tmp //
// ----MyClass.class //
////////////////////////////
// TODO
// Send parameter to MyClass constructor (by reference)
// Get public int number from MyClass
void setup()
{
String className = "MyClass";
Object instance;
Method updateMethod;
// sketchPath("") returns the directory this file is in
File file = new File(sketchPath(""));
try
{
URL url = file.toURL();
URL[] urls = new URL[]{url};
ClassLoader classLoader = new URLClassLoader(urls);
Class<?> loadedClass = classLoader.loadClass("tmp."+className);
try
{
instance = loadedClass.newInstance();
updateMethod = loadedClass.getDeclaredMethod("update");
// Calls MyClass's update() method
try
{
updateMethod.invoke(instance);
}
catch (InvocationTargetException e) {System.out.println(e);}
catch (IllegalAccessException e) {System.out.println(e);}
}
catch (InstantiationException e) {System.out.println(e);}
catch (IllegalAccessException e) {System.out.println(e);}
catch (NoSuchMethodException e) {System.out.println(e);}
}
catch (MalformedURLException e) {System.out.println(e);}
catch (ClassNotFoundException e) {System.out.println(e);}
}
MyClass.java:我正在加载的class:
package tmp;
public class MyClass
{
public int infoToAccess = 1337;
public MyClass(int i)
{
System.out.println("MyClass constructor was called with numebr: " + i);
}
public void update()
{
System.out.println("Update was called.");
}
}
感谢您对此的任何帮助!
正如我在评论中写的link,你可以在这个调用中传递参数
updateMethod = loadedClass.getDeclaredMethod("update", 参数在这里);
那么您应该可以调用带有参数的方法
如果你想将参数传递给你不能使用的构造函数getInstance()
,你必须获取构造函数对象并在那里传递参数。
示例:
Constructor constructor = aClass.getConstructor(new Class[]{String.class});
MyObject myObject = (MyObject) constructor.newInstance("constructor-arg1");
在此处查看教程:Java Reflection - Constructors
您可以使用您加载的 class 来获取构造函数 您需要使用它来创建新实例。
import java.lang.reflect.Constructor;
...
Class<?> loadedClass = classLoader.loadClass("tmp."+className);
try {
Constructor<?> ctor=loadedClass.getConstructor(int.class);
ctor.newInstance(42);
...
}
...
对于您询问的两件事,您都需要使用反射:
Class<?> loadedClass = classLoader.loadClass("tmp." + className);
Object oInstance = null;
try {
Constructor<?> c = loadedClass.getConstructor(Integer.class);
oInstance = c.newInstance(10);
} catch (InstantiationException | IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
//Handle the possibility that you cannot access this constructor
}
要访问对象的 public 字段:
try {
Field field = loadedClass.getField("infoToAccess");
int fieldValue = field.getInt(oInstance);
} catch (NoSuchFieldException | IllegalAccessException e) {
//Handle the possibility that you cannot access this field
}