JVMTI 获取被调用类/文件的名称
我尝试阅读整个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 JNI 文档,
JavaVMInitArgs< /code> struct 用于从本机代码创建新的虚拟机,所以我认为这是一个转移注意力的事情。 AFAIK 在 JVMTI 或 Java 中都没有对命令行参数的 API 访问。
您可以采取一些措施来找出带有 main 方法的类的名称:
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:
args[]
array.