JVMTI 获取被调用类/文件的名称

发布于 2024-11-29 10:17:56 字数 345 浏览 2 评论 0原文

我尝试阅读整个 jvmti 文档,但没有找到问题的解决方案。

我想获取在命令行中用于调用程序的类/文件的名称:

java -agentpath:<pathToAgent> <calledJavaProgram>

在大写字母中,我想获取 << 的名称。称为Java程序>。

GetSourceFileName(jclass klass,...) 只获取参数列表中设置的“klass”的名称,但自从我启动该程序以来,我什至不知道这个...对吧?

有(其他)方法获得这个名字吗?

谢谢你的帮助 马库斯·G.

I tried to read through the whole jvmti documentation and I didn't find a solution for my problem.

I want to get the name of the class/file that is used in the command line to call the program:

java -agentpath:<pathToAgent> <calledJavaProgram>

In upper case I want to get the name of < calledJavaProgram >.

GetSourceFileName(jclass klass,...) gets me only the name of the "klass", that is set in the parameterlist, but since I started the program I even don't know this one ... right?

Are there (other) ways to get this name?

Thx for your help
Markus G.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

不语却知心 2024-12-06 10:17:56

根据 JNI 文档,JavaVMInitArgs< /code> struct 用于从本机代码创建新的虚拟机,所以我认为这是一个转移注意力的事情。 AFAIK 在 JVMTI 或 Java 中都没有对命令行参数的 API 访问。

您可以采取一些措施来找出带有 main 方法的类的名称:

  1. 使用 JNI 调用 解决了
  2. 使用 BCI 修改所有主要方法并向您的代理执行 JNI 回调,第一个被调用的方法就是您想要的方法。这还允许您获取 args[] 数组。

According to the JNI documentation, the JavaVMInitArgs struct is for creating new VMs from native code, so I think that's a red herring. AFAIK there is no API access in either JVMTI or in Java to command line arguments.

There are some things you could do to find out the name of the class with the main method:

  1. Use JNI to call a Java method that works it out.
  2. Use BCI to modify all main methods and do a JNI callback to your agent, the first one to get called is the one you want. This also allows you to get the args[] array.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文