I need to read the contents of .class file of java in my java program or is there any method available to read the same.Actually I want to retrieve the local variable table ,line number table,etc from .class file of java but I'm not getting any method to read the same?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
To read those you will need ASM, BCEL or a similar bytecode library. Java's reflection API does not tell them to you. |
|||
|
|
|
You need a Java decompiler or something like that |
|||||||
|
|
You can get these info using BCEL
Or You can also Use Reflection API to get info from class file |
|||||
|