DOS下的java命令

发布于 2024-10-08 01:08:40 字数 152 浏览 3 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

疏忽 2024-10-15 01:08:40

我不知道您是否特别想要一个本地工具来查找签名,但最好的选择始终是查看 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.

枉心 2024-10-15 01:08:40

你应该做

java -cp <location-of-servlet-api-jar> javax.servlet.ServletConfig

You should do

java -cp <location-of-servlet-api-jar> javax.servlet.ServletConfig
野生奥特曼 2024-10-15 01:08:40

您需要找到 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文