DOS下的java命令
使用 javap java.lang.Object 我们可以看到它下面的方法签名, 与 javap javax.servlet.ServletConfig 一样,我们看不到它。
任何人都可以建议任何命令来检查方法签名 javax.servlet.ServletConfig
with javap java.lang.Object we are able to see the methods signature under it,
where as with javap javax.servlet.ServletConfig we are not able to see it.
Could any one please suggest any command for checking the method signatures for
javax.servlet.ServletConfig
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不知道您是否特别想要一个本地工具来查找签名,但最好的选择始终是查看 API 文档。在 google 上搜索完全限定的类名可直接找到 官方 API文档。这不仅会向您显示方法签名,而且通常会为您提供远远超出参数名称或类型的有价值的上下文信息。
I don't know if you specifically want a local tool to find the signature, however the best bet is always to look at the API documentation. A google search of the fully qualified class name leads straight to the official API documentation. This will not only show you the method signatures, but often give you valuable contextual information well beyond an argument name or type.
你应该做
You should do
您需要找到 servlet-api.jar 文件并发出以下命令:
javap -classpath javax.servlet.ServletConfig
替换为 servlet-api-.jar 的路径
You will need to locate your servlet-api.jar file and issue the following command:
javap -classpath javax.servlet.ServletConfig
substitute with the path to your servlet-api-.jar