I have a C++ code that upon execution:

Loads JVM (I have full control on how to load the JVM), and call Java methods (from loaded classes) using C JNI code. The Java code has no Main() and it is actually not a standard Java application. it is mainly a static code that compiled and compacted into Jar file, the code is being called by the C++ module.

Is it possible to profile this Java code being executed by YourKit (have license for it)? If so I'll be glad to know how.

link|improve this question

4  
I have managed to profile using YourKit. I just added the yourkit.com/docs/80/help/agent.jsp agnent VM flag and attach the profiler to the VM. – Guy May 23 '10 at 11:02
5  
Please consider answering your own question :) – antispam Apr 18 '11 at 8:53
As antispam suggests - why don't you put your finding as an answer here? – Grzegorz Oledzki May 12 '11 at 20:46
feedback

2 Answers

I'll throw this out there for C++ folks looking to profile Java: Java has a great visual profiler that automatically hooks up to the JVM called VisualVM. It is included with the jdk. Check it out here: http://visualvm.java.net/

To run visual vm look for the executable in your jdk bin folder.

link|improve this answer
feedback
up vote 0 down vote accepted

Answer for the mass demands,

I have managed to profile using YourKit. I just added the yourkit.com/docs/80/help/agent.jsp agnent VM flag and attach the profiler to the VM.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.