如何获取 JVMTI 中的完整命令行?
是否可以获取包含用于启动当前 Java 进程的所有参数的完整命令行,并在 JVMTI 的 OnLoad 阶段获取该命令行?
Is it possible to get full command line with all arguments which was used to launch current Java process and to get that during OnLoad phase in JVMTI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我查阅了JVMTI参考,我认为它不是本机提供的,我想您最好的选择是使用字节代码检测(BCI)。
I have consulted the JVMTI reference and I think that it is not natively provided, I guess your best shot is to use Byte Code Instrumentation (BCI).
不可能获取拉取路径,但在 Oracle JVM 上,您可以使用它
来获取主类和参数。
您也可以使用 java.class.path,因此通过两者您可以发现很多有关命令如何启动的信息。
Its not possible to get the pull path but on Oracle JVMs you could use
to get the main class and arguments.
You can use java.class.path too, so with both you can discover quite a lot about how the command started.