I have a bunch of .class files that I did not myself build.
From these .class files, is it possible to know the various compilation flags used for building them? Things like... optimization on or off, with debug info on or off, etc.
|
I have a bunch of From these |
|||
|
|
|
No major Java compiler does any kind of optimizations (except for some constant value folding). That's usually reserved for the JVM to be done at runtime. To find out if a LineNumberTable: line 7: 0 line 8: 8 If the class was compiled with full debugging info (including local variables), then it also contains a LocalVariableTable: Start Length Slot Name Signature 0 9 0 argc [Ljava/lang/String; One compiler flag that actually influences the output is |
|||
|
|