Skip to main content

All Questions

0 votes
1 answer
580 views

Bad local StackMapTable

I've generated a simple getter method with ASM in an already existent class. mv = cn.visitMethod(access, // public method "get_" + f.name, // name ...
FFY00's user avatar
  • 102
3 votes
1 answer
2k views

Java cannot find the class file, while javap can

I have compiled a class (called Test.class) using the Java ASM library. I decided to try and ensure that I had properly compiled the class by attempting to run it using the "java" command. However, ...
SamTebbs33's user avatar
  • 5,617
24 votes
3 answers
15k views

Understanding javap's output for the Constant Pool

When running javap on a very simple HelloWorld application I have some confusion on the output around the constant pool. Test Code public class TestClass { public static void main(String[] args) ...
Andrew White's user avatar
  • 53.2k