0

我想更改使用 BCEL 的方法。但我不知道如何更新异常表。这是简化的代码:

ConstantPoolGen poolGen = classGen.getConstantPool();
InstructionList iList = new InstructionList(method.getCode().getCode());
MethodGen newMethodGen = new MethodGen(method, classGen.getClassName(), poolGen);
for (InstructionHandle handle : iList.getInstructionHandles().clone()) {
    if (I_WANT_TO_WRAP_IT(handle)) {
         iList.insert(handle, MAKE_WRAPPER(handle));
         iList.delete(handle);
    }
}
classGen.removeMethod(method);
newMethodGen.setMaxStack();
newMethodGen.setMaxLocals();
classGen.addMethod(newMethodGen.getMethod());

正确修改此字节码后,异常表未更改并导致ClassFormatError因为异常表指向不存在PC。知道如何处理吗?

4

1 回答 1

1

通常你不需要处理这个,因为 BCEL 应该处理它。在我看来,您的错误是使用了不同于MethodGen. 因此,您正在修改基础代码,但未正确处理偏移量。

尝试使用

MethodGen newMethodGen = new MethodGen(method, classGen.getClassName(), poolGen);
InstructionList iList = newMethodGen.getInstructionList();

以确保您的代码和MethodGen.

于 2013-10-21T16:25:59.087 回答