使用反射的javax.servlet.http.Cookie的NoSuchMethodException

时间:2017-05-12 23:10:31

标签: java reflection

我正在调用javax.servlet.http.Cookie并在Eclipse中运行程序时收到NoSuchMethodExceptionjavax.servlet-api-4.0.0.x.jar位于构建路径中。 这是我目前正在运行的代码:

method = cms.getClass().getMethod(field, javax.servlet.http.Cookie.class);

我也尝试过:

method = cms.getClass().getMethod(field, Cookie.class);

还有import javax.servlet.http.Cookie;的导入。对象cmsClass,用于连接SQL服务器,fieldString,包含要调用的方法的名称。

1 个答案:

答案 0 :(得分:1)

您可能想要使用getDeclaredMethod(field, Cookie.class)

getMethod(...)仅返回公共成员。