views:

66

answers:

2

What is the Java equivalent of Debugger.Launch()?

+2  A: 

There's no direct equivalent to this in Java.

Joachim Sauer
A: 

I don't know if it is still valid for 1.4+ but
http://java.sun.com/j2se/1.3/docs/tooldocs/solaris/jdb.html

There is also com.sun.jdi.connect.AttachingConnector

KitsuneYMG