I am using Java ASM to add a method to compiled class. During run time I am getting
below error, when the newly added method is invoked.

    ClassFormatError: Field "valueEquals" in class test/asm/Item has illegal signature "(Ljava/lang/Object;)Z"  

Below is the method which I expecting to add

    public boolean valueEquals(Object obj){  
        return ItemHelper.valueEquals(obj);  
    }  

Below is the asm code for this.

    String methodName = "valueEquals";  
    MethodVisitor mv = cw.visitMethod(ACC_PUBLIC, methodName, "(Ljava/lang/Object;)Z", null, null);  
    mv.visitCode();  
    mv.visitVarInsn(ALOAD, 1);  
    mv.visitFieldInsn(INVOKESTATIC, "test/asm/ItemHelper", methodName, "(Ljava/lang/Object;)Z");  
    mv.visitInsn(IRETURN);  
    mv.visitMaxs(2, 1);  
    mv.visitEnd();  

Please can some one help me in identifying what I am doing wrong here. Your help is very much appreciated.

link|improve this question
feedback

1 Answer

You need to use visitMethodInsn instead of visitFieldInsn, since you are calling a method, not accessing a field.

link|improve this answer
Thanks a lot @Viruzzo I changed the code to visitMethodInsn and it fixed the issue. – user1048486 Jan 17 at 11:57
Then I guess you should accept the answer? – Viruzzo Jan 17 at 12:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.