How can I determine for any Java .class file if that was compiled with debug info or not?
How can I tell exactly what -g{source|lines|vars} option was used?
|
|
|
If you're on the command line, then javap -l will display LineNumberTable and LocalVariableTable if present:
Programmatically, I'd look at ASM rather than writing yet another bytecode reader. |
|||
|
|
|
You must check the |
|||
|
|
|
I ran into this problem myself, and created a Perl script based partly on Pete's answer which showed how to use javap to find the debugging information. The script extends on this by automating the process of reading through JARs, and checking for debug information on every class inside, and reporting any broken classes which are missing the debugging information: https://gist.github.com/megahall/5416632 Hopefully this will help the next person who runs into the same issues. |
|||
|
|