用BCEL设计字节码 - 直接在方法的调用处添加方法 - 编程入门网
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-06-20
rt org.apache.bcel.Constants; import org.apache.bcel.classfile.ClassParser; import org.apache.bcel.classfile.ConstantClass; import org.apache.bcel.classfile.ConstantMethodref; import org.apache.bcel.classfile.ConstantNameAndType; import org.apache.bcel.classfile.ConstantPool; import org.apache.bcel.classfile.JavaClass; import org.apache.bcel.classfile.Method; import org.apache.bcel.generic.ClassGen; import org.apache.bcel.generic.ConstantPoolGen; import org.apache.bcel.generic.INVOKEVIRTUAL; import org.apache.bcel.generic.Instruction; import org.apache.bcel.generic.InstructionFactory; import org.apache.bcel.generic.InstructionHandle; import org.apache.bcel.generic.InstructionList; import org.apache.bcel.generic.LocalVariableGen; import org.apache.bcel.generic.MethodGen; import org.apache.bcel.generic.Type; public class BCELTiming3 { /**//* * 膝宙StringBuilder議光倖圭隈議峺綜會双,壓凪嶄孀Invokexxxx峺綜, * 心緩峺綜壓械楚学嶄哈喘議圭隈哈喘頁倦頁勣凪念朔紗旗鷹議圭隈 * 圭隈侭壓議窃勣匯崑?圭隈議兆各勣匯崑?圭隈議禰兆勣匯崑 * */ /** *//** * * @param cgen 勣瓜盾裂議窃class猟周 * @param classname 勣瓜俐個議圭隈侭壓議窃兆各,飛嗤淫兆,夸葎java/lang/Object窃貌議 * @param methodname 勣瓜俐個議圭隈議兆各 * @param methodSignature 勣瓜俐個議圭隈議禰兆 */ private static void modifyWrapper(ClassGen cgen,String classname,String methodname,String methodSignature){ InstructionFactory ifact = new InstructionFactory(cgen); ConstantPoolGen pgen = cgen.getConstantPool(); ConstantPool pool = pgen.getConstantPool(); String cname = cgen.getClassName(); Method[] methods = cgen.getMethods(); for(int i=0;i<methods.length;i++){ Method tempMethod = methods[i]; MethodGen tempMethodGen = new MethodGen(tempMethod,cname,pgen); InstructionList tempList = tempMethodGen.getInstructionList(); tempList.iterator(); Instruction[] tempInstructions = tempList.getInstructions(); InstructionHandle[] tempInHandles = tempList.getInstructionHandles(); for(int j=0;j<tempInHandles.length;j++){ InstructionHandle ihandle = tempInHandles[j]; Instruction nowInstruction = ihandle.getInstruction(); if(nowInstruction.getOpcode()==Constants.INVOKEVIRTUAL){ INVOKEVIRTUAL invokeVirtual = (INVOKEVIRTUAL)nowInstruction; ConstantMethodref cmr = (ConstantMethodref)pgen.getConstant(invokeVirtual.getIndex()); |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于用BCEL设计字节码 - 直接在方法的调用处添加方法 - 编程入门网的所有评论