摘要: 一、实现InvacatinHandlerExmaple:import java.lang.reflect.InvocationHandler;import java.lang.reflect.Method;public class MyInvocationhandler implements InvocationHandler{ private Object target; @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { // TODO 调用一个类... 阅读全文
posted @ 2014-02-18 09:23 伟我独high 阅读(165) 评论(0) 推荐(0) 编辑