How to script the java debugger command-line tool

2019-02-15 13:55发布

问题:

How can I drive the debugging session with some scripting language like ruby? Is there any easier options than using Expect or some similar module with a scripting language?

回答1:

You may be able to use JRuby to drive your own debugger via the JPDA API.



回答2:

Check out jdiscript; it's a thin scripting frontend for the JDI that can be used with Java, JRuby, or any other jvm language.