`
udvs
  • 浏览: 14855 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

JAVA 动态dialing

阅读更多
看了1月的程序员杂志,看到动态代理的讲述,写下如下学习笔记,其中demo做了改动,更好体现动态代理的概念。

一:动态代理实践

1.接口类:Foo.java

package dymaticproxy;



/**

* <p>Title: 高层提供的服务接口</p>

* <p>Description: </p>

* <p>Copyright: Copyright (c) 2004</p>

* <p>Company: huawei</p>

* @author zhaolh

* @version 1.0

*/



public interface Foo {

    void doAction();

}

2.接口的实现1

package dymaticproxy;



/**

* <p>Title:高层提供服务接口的具体实现 </p>

* <p>Description: </p>

* <p>Copyright: Copyright (c) 2004</p>

* <p>Company: </p>

* @author zhaolh

* @version 1.0

*/



public class FooImpl implements Foo {

    public FooImpl() {

    }

    public void doAction() {

        /**@todo Implement this dymaticproxy.Foo method*/

        //throw new java.lang.UnsupportedOperationException("Method doAction() not yet implemented.");

        System.out.println("in FooImp1.doAction()");

    }

}

3.接口的实现2

package dymaticproxy;



/**

* <p>Title: </p>

* <p>Description: </p>

* <p>Copyright: Copyright (c) 2004</p>

* <p>Company: </p>

* @author zhaolh

* @version 1.0

*/



public class FooImpl2 implements Foo {

    public FooImpl2() {

    }

    public void doAction() {

        /**@todo Implement this dymaticproxy.Foo method*/

        //throw new java.lang.UnsupportedOperationException("Method doAction() not yet implemented.");

        System.out.println("in FooImp2.doAction()");

    }

}

4.处理器类

package dymaticproxy;



import java.lang.reflect.Method;

import java.lang.reflect.InvocationHandler;



/**

* <p>Title: 动态代理类的调用处理器</p>

* <p>Description: </p>

* <p>Copyright: Copyright (c) 2004</p>

* <p>Company: </p>

* @author zhaolh

* @version 1.0

*/



public class CommonInvocationHandler implements InvocationHandler {

    //动态执行对象,需要回调的对象

    private Object target;



    //支持构造子注射

    public CommonInvocationHandler() {



    }



    //支持构造子注射

    public CommonInvocationHandler(Object target) {

      setTarget(target);

    }



    /**

     * 采用setter方法注射

     * @param target

     */

    public void setTarget(Object target)

    {

      this.target=target;

    }



    /**

     * 调用proxy中指定的方法method,并传入参数列表args

     * @param proxy 代理类的类型,例如定义对应method的代理接口

     * @param method 被代理的方法

     * @param args  调用被代理方法的参数

     * @return

     * @throws java.lang.Throwable

     */

    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {

        /**@todo Implement this java.lang.reflect.InvocationHandler method*/

        //throw new java.lang.UnsupportedOperationException("Method invoke() not yet implemented.");

        return method.invoke(target,args);

    }



}

5.动态代理示范程序

package dymaticproxy;



import java.lang.reflect.InvocationHandler;

import java.lang.reflect.Proxy;



/**

* <p>Title: </p>

* <p>Description: </p>

* <p>Copyright: Copyright (c) 2004</p>

* <p>Company: </p>

* @author zhaolh

* @version 1.0

*/



public class Demo {

    public static void main(String[] args) {

        //1.通用的动态代理实现

        CommonInvocationHandler handler = new CommonInvocationHandler();

        Foo f;



        //2.接口实现1

        handler.setTarget(new FooImpl());

        //方法参数说明:代理类、代理类实现的接口列表、代理类的处理器

        //关联代理类、代理类中接口方法、处理器,但代理类中接口方法被调用时,会自动分发到处理器的invoke方法

        //如果代理类没有实现指定接口列表,会抛出非法参数异常

        f = (Foo) Proxy.newProxyInstance(Foo.class.getClassLoader(),

                                                  new Class[] { Foo.class },

                                                  handler);

        f.doAction();



        //3.接口实现2

        handler.setTarget(new FooImpl2());

        f = (Foo) Proxy.newProxyInstance(Foo.class.getClassLoader(),

                                          new Class[] { Foo.class },

                                          handler);

        f.doAction();

     }

}

二:动态代理的总结

代理类(可以单个接口和类)、代理类接口(可以是多个接口)、处理器构成一种动态的关系,创建和运行期都可以随意改变的。

例如上例中Proxy.newProxyInstance创建的(Foo.class.getClassLoader()类型)实例f,可以实现new Class[] { Foo.class }中指定接口,并和handler关联。所有通过f的调用接口(new Class[] { Foo.class })中方法(doAction())都被转发到invoke()中动态调用target的doAction()实现。

总之动态代理提供一种动态代理类,它的实例可以实现任意的业务接口,并且可以在运行时决定某个实例实现那个接口。同时可以实现对特有调用方法的拦截。
分享到:
评论

相关推荐

    模拟电话(JAVA)

    这些可以通过定义一系列的状态和状态转换来实现,例如使用枚举类型表示电话的状态(如IDLE、DIALING、CONNECTED、DISCONNECTED),并通过状态机模式管理状态转换。 至于【PhotoCenter】这个文件名,可能是一个错误...

    android application development 中用到的源码-dialing-example

    ```java Intent intent = new Intent(Intent.ACTION_DIAL); intent.setData(Uri.parse("tel:" + phoneNumber)); ``` 这里的`phoneNumber`变量包含了待拨打的电话号码。然后,开发者可以使用`startActivity(intent)`...

    BlackBerry TTS中文语音转换,语音命令

    代码:稍微修改了ispeech.org的例子程序,把英文语言,修改为中文语言。 功能:使用ispeech.org的...注意:编译项目的时候,你需要去ispeech.org网站上免费申请API Key,替换掉iSpeechSample.java里面的_APIKey。

    android P_MTK RILD.docx

    每个状态对应不同的电话阶段,如DIALING、ALERING、ACTIVE、HOLDING、INCOMING和WAITING。 2. GsmCdmaPhone:根据网络模式创建单例,GsmCdmaPhone实例与GsmCdmaCallTracker协同工作,处理电话的建立、切换和挂断等...

    计算机应用基础6(20211010163226).pdf

    - DHCP指的可能是动态主机配置协议,用于自动分配IP地址给网络中的设备。 2. **办公软件相关**: - 文档提到了Word2003、Excel2003和PowerPoint2003,这些是微软Office套件中的组件,分别用于处理文字、表格和...

    Android核心分析(19)----电话系统之GSMCallTacker.doc

    GSMCallTracker基于Handler机制,它维护了一个名为connections的列表,用来记录和管理各种状态的通话连接,如ACTIVE(活跃)、DIALING(拨号中)、ALERTING(振铃)、HOLDING(保持)、INCOMING(来电)和WAITING...

    oj题目:电话号码匹配

    For example, you can call the University of Waterloo by dialing the memorable TUT-GLOP. Sometimes only part of the number is used to spell a word. When you get back to your hotel tonight you can ...

    定时拨打电话程序

    自动拨打电话(Automatic Dialing)功能则涉及到安卓系统的电话权限和API的使用。在安卓系统中,应用程序如果想要访问或操作电话功能,必须获取到`READ_PHONE_STATE`和`CALL_PHONE`的权限。开发者需要在...

    MH-CALLER:使用 Android 的马哈拉施特拉邦 STD 代码生成器应用程序

    使用 Android 的马哈拉施特拉邦 STD 代码生成器应用程序" 是一个专为Android平台设计的应用程序,旨在帮助用户轻松获取和使用印度马哈拉施特拉邦(Maharashtra)的电话区号,即STD(Subscriber Trunk Dialing)代码...

    Android 实现手机接通电话后振动提示的功能

    1. `GET_CURRENT_CALLS id=1,DIALING`:拨号中。 2. `GET_CURRENT_CALLS id=1,ALERTING`:电话正在振铃。 3. `GET_CURRENT_CALLS id=1,ACTIVE`:电话处于活跃状态,即接通。 值得注意的是,电话接通前可能会经历多...

    Android 4.0 Compatibility Definition

    Managed APIs refer to the Java-based APIs provided by the Android framework. The CDD ensures that these APIs are stable and predictable, allowing developers to write applications that work ...

    VB编程资源大全(英文源码 网络)

    1 , WinLocaleConvert.zip This program shows the international settings of the country you select such as Format Currency, Date Format, Day Name, Month Name...&lt;END&gt;&lt;br&gt;2 , netstuff.zip This ...

Global site tag (gtag.js) - Google Analytics