2

hi i am using bcel library to read byte code. I needed to extract the variables names.

Any idea how to do it?

1 Answers1

3

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...

Neil Coffey
  • 21,615
  • 7
  • 62
  • 83