hi i am using bcel library to read byte code. I needed to extract the variables names.
Any idea how to do it?
Note that method-local variable names don't exist at the level of the class file: at the btyecode level, they're just referred to by local variable number. So if you're looking for these, you won't find them...
Note that method-local variable names don't exist at the level of the class file: at the btyecode level, they're just referred to by local variable number. So if you're looking for these, you won't find them...