我正在调用javax.servlet.http.Cookie
并在Eclipse中运行程序时收到NoSuchMethodException
。 javax.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;
的导入。对象cms
是Class
,用于连接SQL服务器,field
是String
,包含要调用的方法的名称。
答案 0 :(得分:1)
您可能想要使用getDeclaredMethod(field, Cookie.class)
。
getMethod(...)
仅返回公共成员。