gpt4 book ai didi

Java反射调用不起作用

转载 作者:行者123 更新时间:2023-12-01 11:14:28 25 4
gpt4 key购买 nike

public class RunnableSupport implements Runnable {

private MyClient myClient;
private String frameType;

Method[] methodList;
Constructor<?> constructor;
Class<?> myClass;

private JFrame mainFrame;
private boolean mustClose;
private int width;
private int height;
private int x;
private int y;

public RunnableSupport(MyClient myClient, String frameType, int width,
int height, int x, int y, boolean mustClose) {
this.myClient = myClient;
this.frameType = frameType;
this.height = height;
this.width = width;
this.x = x;
this.y = y;
this.mustClose = mustClose;
}

@Override
public void run() {
try {
myClass = Class.forName("it.polimi.social.frame." + frameType);
constructor = myClass
.getDeclaredConstructor(new Class[] { MyClient.class });
methodList = myClass.getDeclaredMethods();

mainFrame = (JFrame) constructor.newInstance(myClient);
mainFrame.setSize(width, height);
mainFrame.setLocation(x, y);
if (mustClose)
mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
mainFrame.setVisible(true);
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SecurityException e) {
e.printStackTrace();
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
}
}

public JFrame getFrame() {
return mainFrame;
}

public void invokeMethod(String method) {
for (int i = 0; i < methodList.length; i++) {
if (methodList[i].getName() == method) {
try {
methodList[i].invoke(mainFrame);
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
break;
}
}
}

我的反射有问题。我使用此类作为各种 JFrame 元素的通用可运行对象。因此,我需要通过反射调用方法。当我尝试调用方法时出现此错误:

Exception in thread "main" java.lang.NullPointerException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at it.polimi.social.frame.RunnableSupport.invokeMethod(RunnableSupport.java:83)
at it.polimi.social.client.MyClient.main(MyClient.java:56)

即使看起来没什么问题。问题是当我尝试调用该方法时...我还检查了其他问题,但它们都是不同的问题,即使相似。谢谢!

编辑:我已经解决了问题,谢谢大家。

现在我对我所做的事情还有另一个问题。使用反射的单个可运行对象而不是为每个 JFrame 类使用不同的可运行对象是一个好主意吗?我担心的是,每次调用方法时使用单个类意味着在方法列表中进行搜索。

最佳答案

在这一行:

if (methodList[i].getName() == method)

永远不要用 == 来比较字符串。尝试将其更改为 .equals() 并查看是否有帮助。

关于Java反射调用不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31993763/

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