The JVM Tool Interface(JVMTI) specification says that the JVMTI agents can be started in the VM during live phase but they havent mentioned how it can be done. Has anyone tried this before or got any hints on how to do it?

link|improve this question

75% accept rate
feedback

1 Answer

You can use method

   * @param   agent
   *          Path to the JAR file containing the agent.
   *
   * @param   options
   *          The options to provide to the agent's <code>agentmain</code>
   *          method (can be <code>null</code>).

   com.sun.tools.attach.VirtualMachine.loadAgent(String agent, String options)

from ${java.home}/../lib/tools.jar

link|improve this answer
but JVMTI agent would be a native library... how a jar file can contain JVMTI agent? – sandeep Dec 6 '11 at 12:04
Have no idea. I used this method for tests. – Sergey Kabashnyuk Jan 10 at 13:16
feedback

Your Answer

 
or
required, but never shown

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