Java debugging decompiled classes without line number attributes

Is there a way to debug third-party Java code (library) that I believe was compiled without line number attributes? I am attaching a debugger to this class (decompiled in Eclipse using JadClipse) and I can set breakpoints on the method entry, but I cannot step through the code line by line.

+2


a source to share


1 answer


Perhaps you can re-compile the decompiled code and debug it instead of the "real" banner?



+2


a source







All Articles