Eclipse: How to debug without the original jar?

I am using Eclipse 3.4. I want to be able to put a breakpoint in a line of code that is in a bank for which I have no source code and no source code. How can i do this?

+3
source share
2 answers

Even without a source, you can view the outlines for classes and from the diagram view, set breakpoints on methods.

If you should see some representation of the source, they are both good: http://jadclipse.sourceforge.net/wiki/index.php/Main_Page and http://java.decompiler.free.fr/

+2
source
0

Source: https://habr.com/ru/post/1741801/


All Articles