快速业务通道

Java编程的动态性, 第4部分: 用Javassist进行类转换 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17
System.out.println("Added timing to method " +              argv[0] + "." + argv[1]);          }        } catch (CannotCompileException ex) {          ex.printStackTrace();        } catch (NotFoundException ex) {          ex.printStackTrace();        } catch (IOException ex) {          ex.printStackTrace();        }      } else {        System.out.println("Usage: JassistTiming class method- name");      }    }    private static void addTiming(CtClass clas, String mname)      throws NotFoundException, CannotCompileException {      // get the method information (throws exception if method  with      // given name is not declared directly by this class,  returns      // arbitrary choice if more than one with the given name)      CtMethod mold = clas.getDeclaredMethod(mname);      // rename old method to synthetic name, then duplicate  the      // method with original name for use as interceptor      String nname = mname+"$impl";      mold.setName(nname);      CtMethod mnew = CtNewMethod.copy(mold, mname, clas,  null);      // start the body text generation by saving the start  time      // to a local variable, then call the timed method; the      // actual code generated needs to depend on whether the      // timed method returns a value      String type = mold.getReturnType().getName();      StringBuffer body = new StringBuffer();      body.append("{\nlong start = System.currentTimeMillis();\n");      if (!"void".equals(type)) {        body.append(type + " result = ");      }      body.append(nname + "($);\n");      // finish body text generation with call to print the  timing      // information, and return saved value (if not void)      body.append("System.out.println(\"Call to method " + mname +        " took \" +\n (System.currentTimeMillis()-start) + " +        "\" ms.\");\n");      if (!"void".equals(type)) {        body.append("return result;\n");      }      body.append("}");      // replace the body of the interceptor method with  generated      // code block and add it to class      mnew.setBody(body.toString());      clas.addMethod(mnew);      // print the generated code block just to show what was  done      System.out.println("Interceptor method body:");      System.out.println(body.toString());    } }

Java编程的动态性, 第4部分: 用Javassist进行类转换(4)

时间:2011-04-09 IBM Dennis M. Sosnoski

构造

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号