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

应用java与flex轻松构建cs程序

阅读更多

今天发现SmartInvoke这一好东西,拿过来与大家分享分享!

 

原文地址 http://smartinvoke.cn/pages/document.jsp

 

通过它可以轻松的实现java与flex在本地的互相调用,利用java与flex构建强大的CS程序不是梦。

原文如下:

================================================

 

大家都知道flex的web application不能操作和访问本地文件,我们今天就通过
smartInvoke让flex可以轻松的访问到本地文件。

一:在java应用程序中创建一操作本地文件的test.CFile类,创建几个对文件进行
访问的方法;具体如下:

  1.     
  2.    package test;  
  3.   
  4. import java.io.File;  
  5.   
  6. import cn.smartinvoke.javaflex.gui.IServerObject;  
  7. //IServerObject表示此类型是一个服务类型专门接受flex代理类型对象的访问  
  8. public class CFile implements IServerObject{  
  9.     public File file=null;  
  10.     public CFile(String fileName) {  
  11.         file=new File(fileName);  
  12.     }  
  13.     public long getSize(){  
  14.         return this.file.length();  
  15.     }  
  16.     public String getName(){  
  17.         return this.file.getName();  
  18.     }  
  19.     /** 
  20.      * @param args 
  21.      */  
  22.     public static void main(String[] args) {  
  23.           
  24.     }  
  25.   
  26. }  

 

Java代码 复制代码
  1.      
  2.    package test;   
  3.   
  4. import java.io.File;   
  5.   
  6. import cn.smartinvoke.javaflex.gui.IServerObject;   
  7. //IServerObject表示此类型是一个服务类型专门接受flex代理类型对象的访问   
  8. public class CFile implements IServerObject{   
  9.     public File file=null;   
  10.     public CFile(String fileName) {   
  11.         file=new File(fileName);   
  12.     }   
  13.     public long getSize(){   
  14.         return this.file.length();   
  15.     }   
  16.     public String getName(){   
  17.         return this.file.getName();   
  18.     }   
  19.     /**  
  20.      * @param args  
  21.      */  
  22.     public static void main(String[] args) {   
  23.            
  24.     }   
  25.   
  26. }  

      
二:运用CodeTransform工具生成test.CFile类的代理类test.CFile.as,具体内容如下:

 


  1.    package test  
  2.   
  3. import cn.smartinvoke.RemoteObject;  
  4. /** 
  5.  此类继承于cn.smartinvoke.RemoteObject是java中的test.CFile类的代理类型 
  6.  专门用于调用java中的对应类型。 
  7. */  
  8. public class CFile extends RemoteObject {  
  9.  public function CFile(){  
  10.  super();  
  11.  }  
  12.  //调用此方法可以创建java中的test.CFile类型对象  
  13.  public static function create_CFile(fileName:String):CFile{  
  14.    var file:CFile=new CFile();  
  15.    file.createRemoteObject(null,arguments);  
  16.    return file;  
  17.  }  
  18.  //此方法会调用java中的test.CFile.getName()方法,并将该方法的返回值返回  
  19.  public function getName():String{  
  20.  var retObj:Object=this.call("getName",arguments);  
  21.  return retObj as String;  
  22.   
  23.   }  
  24.   public function getSize():Number{  
  25.  var retObj:Object=this.call("getSize",arguments);  
  26.  return Number(retObj);  
  27.   
  28.   }  
  29. }  

 

Java代码 复制代码
  1.    package test   
  2.   
  3. import cn.smartinvoke.RemoteObject;   
  4. /**  
  5.  此类继承于cn.smartinvoke.RemoteObject是java中的test.CFile类的代理类型  
  6.  专门用于调用java中的对应类型。  
  7. */  
  8. public class CFile extends RemoteObject {   
  9.  public function CFile(){   
  10.  super();   
  11.  }   
  12.  //调用此方法可以创建java中的test.CFile类型对象   
  13.  public static function create_CFile(fileName:String):CFile{   
  14.    var file:CFile=new CFile();   
  15.    file.createRemoteObject(null,arguments);   
  16.    return file;   
  17.  }   
  18.  //此方法会调用java中的test.CFile.getName()方法,并将该方法的返回值返回   
  19.  public function getName():String{   
  20.  var retObj:Object=this.call("getName",arguments);   
  21.  return retObj as String;   
  22.   
  23.   }   
  24.   public function getSize():Number{   
  25.  var retObj:Object=this.call("getSize",arguments);   
  26.  return Number(retObj);   
  27.   
  28.   }   
  29. }   
  30.   
  31.   

三:创建flex程序smartinvoke.mxml并调用CFile代理类

 


  1.  <?xml version="1.0" encoding="utf-8"?>  
  2. <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="onLoad()">  
  3.     <mx:Script>  
  4.         <![CDATA[ 
  5.             import mx.controls.Alert; 
  6.             import test.CFile; 
  7.             import cn.smartinvoke.executor.Executor; 
  8.             /** 
  9.              *此swf加载完毕后调用此方法 
  10.              */ 
  11.             function onLoad():void{ 
  12.                 //让smartInvoke为java与flex相互调用做好准备 
  13.                 Executor.init(); 
  14.             } 
  15.             /** 
  16.              *此方法调用java的test.CFile.getSize方法获得C:/win_yy.png文件的大小,并显示出来 
  17.              */ 
  18.             function getFileName():void{ 
  19.                 //调用java创建test.CFile类对象,并将此对象包装成flex的test.CFile 
  20.                 //代理对象并返回 
  21.                 var file:CFile=CFile.create_CFile("C:/win_yy.png"); 
  22.                 //获得C:/win_yy.png文件的大小 
  23.                 var fileSize:Number=file.getSize(); 
  24.                  
  25.                 Alert.show("文件大小为"+fileSize); 
  26.             } 
  27.         ]]>  
  28.     </mx:Script>  
  29.     <mx:Button label="getSize" click="getFileName()"/>  
  30. </mx:Application>  
  31.     

 

Xml代码 复制代码
  1.  <?xml version="1.0" encoding="utf-8"?>  
  2. <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="onLoad()">  
  3.     <mx:Script>  
  4.         <![CDATA[  
  5.             import mx.controls.Alert;  
  6.             import test.CFile;  
  7.             import cn.smartinvoke.executor.Executor;  
  8.             /**  
  9.              *此swf加载完毕后调用此方法  
  10.              */  
  11.             function onLoad():void{  
  12.                 //让smartInvoke为java与flex相互调用做好准备  
  13.                 Executor.init();  
  14.             }  
  15.             /**  
  16.              *此方法调用java的test.CFile.getSize方法获得C:/win_yy.png文件的大小,并显示出来  
  17.              */  
  18.             function getFileName():void{  
  19.                 //调用java创建test.CFile类对象,并将此对象包装成flex的test.CFile  
  20.                 //代理对象并返回  
  21.                 var file:CFile=CFile.create_CFile("C:/win_yy.png");  
  22.                 //获得C:/win_yy.png文件的大小  
  23.                 var fileSize:Number=file.getSize();  
  24.                   
  25.                 Alert.show("文件大小为"+fileSize);  
  26.             }  
  27.         ]]>  
  28.     </mx:Script>  
  29.     <mx:Button label="getSize" click="getFileName()"/>  
  30. </mx:Application>  
  31.     

四:利用swt 将flex 整合到java程序当中并运行整个程序。

 


  1.   package test;  
  2.   
  3. import org.eclipse.swt.SWT;  
  4. import org.eclipse.swt.layout.FillLayout;  
  5. import org.eclipse.swt.widgets.Display;  
  6. import org.eclipse.swt.widgets.Shell;  
  7.   
  8. import cn.smartinvoke.javaflex.gui.FlashContainer;  
  9.   
  10. public class DemoFirst extends Shell {  
  11.   
  12.     /** 
  13.      * Launch the application 
  14.      * @param args 
  15.      */  
  16.     public static void main(String args[]) {  
  17.         try {  
  18.             Display display = Display.getDefault();  
  19.             DemoFirst shell = new DemoFirst(display, SWT.SHELL_TRIM);  
  20.             shell.open();  
  21.             shell.layout();  
  22.             while (!shell.isDisposed()) {  
  23.                 if (!display.readAndDispatch())  
  24.                     display.sleep();  
  25.             }  
  26.         } catch (Exception e) {  
  27.             e.printStackTrace();  
  28.         }  
  29.     }  
  30.   
  31.     /** 
  32.      * Create the shell 
  33.      * @param display 
  34.      * @param style 
  35.      */  
  36.     public DemoFirst(Display display, int style) {  
  37.         super(display, style);  
  38.         createContents();  
  39.         setLayout(new FillLayout());  
  40.     }  
  41.   
  42.     /** 
  43.      * Create contents of the window 
  44.      */  
  45.     protected void createContents() {  
  46.         setText("smartinvoke测试程序");  
  47.         //将flash控件添加到窗体  
  48.         FlashContainer flashContainer=new FlashContainer(this);  
  49.         //加载smartinvoke.mxml编译生成的smartinvoke.swf  
  50.         flashContainer.loadMovie(0"E:/flexWork/smartinvoke/bin-debug/smartinvoke.swf");  
  51.         setSize(500375);  
  52.         //  
  53.     }  
  54.   
  55.     @Override  
  56.     protected void checkSubclass() {  
  57.         // Disable the check that prevents subclassing of SWT components  
  58.     }  
  59.   
  60. }  

 

Java代码 复制代码
  1.   package test;   
  2.   
  3. import org.eclipse.swt.SWT;   
  4. import org.eclipse.swt.layout.FillLayout;   
  5. import org.eclipse.swt.widgets.Display;   
  6. import org.eclipse.swt.widgets.Shell;   
  7.   
  8. import cn.smartinvoke.javaflex.gui.FlashContainer;   
  9.   
  10. public class DemoFirst extends Shell {   
  11.   
  12.     /**  
  13.      * Launch the application  
  14.      * @param args  
  15.      */  
  16.     public static void main(String args[]) {   
  17.         try {   
  18.             Display display = Display.getDefault();   
  19.             DemoFirst shell = new DemoFirst(display, SWT.SHELL_TRIM);   
  20.             shell.open();   
  21.             shell.layout();   
  22.             while (!shell.isDisposed()) {   
  23.                 if (!display.readAndDispatch())   
  24.                     display.sleep();   
  25.             }   
  26.         } catch (Exception e) {   
  27.             e.printStackTrace();   
  28.         }   
  29.     }   
  30.   
  31.     /**  
  32.      * Create the shell  
  33.      * @param display  
  34.      * @param style  
  35.      */  
  36.     public DemoFirst(Display display, int style) {   
  37.         super(display, style);   
  38.         createContents();   
  39.         setLayout(new FillLayout());   
  40.     }   
  41.   
  42.     /**  
  43.      * Create contents of the window  
  44.      */  
  45.     protected void createContents() {   
  46.         setText("smartinvoke测试程序");   
  47.         //将flash控件添加到窗体   
  48.         FlashContainer flashContainer=new FlashContainer(this);   
  49.         //加载smartinvoke.mxml编译生成的smartinvoke.swf   
  50.         flashContainer.loadMovie(0"E:/flexWork/smartinvoke/bin-debug/smartinvoke.swf");   
  51.         setSize(500375);   
  52.         //   
  53.     }   
  54.   
  55.     @Override  
  56.     protected void checkSubclass() {   
  57.         // Disable the check that prevents subclassing of SWT components   
  58.     }   
  59.   
  60. }  

运行DemoFirst程序就可以看到结果了^_^,是不是觉得一切都很简单呀

java调用flex也是类似

 

接下来我们模拟一执行后台业务的java工作线程,当此线程执行完毕后调用test.FlexShell类的
setStatus(String info)方法将info字符串显示在flex窗体中,以表示后台业务执行完成。

首先:在flex中创建test.FlexShell.as类,具体内容如下:


  1.   package test  
  2. {  
  3.     import cn.smartinvoke.IServerObject;  
  4.       
  5.     import mx.controls.Alert;  
  6.   
  7.     public class FlexShell implements IServerObject  
  8.     {  
  9.         public function FlexShell()  
  10.         {  
  11.         }  
  12.         /** 
  13.          *将info代表的消息打印出来 
  14.          */  
  15.         public function setStatus(info:String):void{  
  16.             Alert.show(info);  
  17.         }  
  18.     }  
  19. }  

 

Java代码 复制代码
  1.   package test   
  2. {   
  3.     import cn.smartinvoke.IServerObject;   
  4.        
  5.     import mx.controls.Alert;   
  6.   
  7.     public class FlexShell implements IServerObject   
  8.     {   
  9.         public function FlexShell()   
  10.         {   
  11.         }   
  12.         /**  
  13.          *将info代表的消息打印出来  
  14.          */  
  15.         public function setStatus(info:String):void{   
  16.             Alert.show(info);   
  17.         }   
  18.     }   
  19. }  

其次:使用CodeTransform工具生成test.FlexShell.as类的代理类test.FlexShell.java,具体内容如下:

 


  1. package test;  
  2. import cn.smartinvoke.javaflex.gui.RemoteObject;  
  3. import cn.smartinvoke.javaflex.gui.FlashContainer;  
  4. public class FlexShell extends RemoteObject {  
  5.  public FlexShell(FlashContainer container){  
  6.     super(container);  
  7.     this.createRemoteObject(null);//调用flex创建该代理类的服务类  
  8.  }  
  9.  public void setStatus(String info){//调用flex对应服务类型的setStatus方法  
  10.  this.call("setStatus",new Object[]{info});  
  11.  }  
  12. }  

 

Java代码 复制代码
  1. package test;   
  2. import cn.smartinvoke.javaflex.gui.RemoteObject;   
  3. import cn.smartinvoke.javaflex.gui.FlashContainer;   
  4. public class FlexShell extends RemoteObject {   
  5.  public FlexShell(FlashContainer container){   
  6.     super(container);   
  7.     this.createRemoteObject(null);//调用flex创建该代理类的服务类   
  8.  }   
  9.  public void setStatus(String info){//调用flex对应服务类型的setStatus方法   
  10.  this.call("setStatus",new Object[]{info});   
  11.  }   
  12. }  

最后:在java的DemoFirst类型中加入后台业务处理线程的逻辑如下:

 


  1.  package test;  
  2.   
  3. import org.eclipse.swt.SWT;  
  4. import org.eclipse.swt.layout.FillLayout;  
  5. import org.eclipse.swt.widgets.Display;  
  6. import org.eclipse.swt.widgets.Shell;  
  7.   
  8. import cn.smartinvoke.javaflex.gui.FlashContainer;  
  9. import cn.smartinvoke.javaflex.gui.ILoadCompleteListener;  
  10. import cn.smartinvoke.javaflex.util.Log;  
  11.  
    分享到:
    评论

相关推荐

    通过SmartInvoke运用java与flex轻松构建cs程序.doc

    ### 通过SmartInvoke运用Java与Flex轻松构建CS程序 #### 概述 本文旨在介绍如何利用SmartInvoke技术结合Java和Flex构建高效的客户端-服务器(CS)应用程序。文章着重讲解了SmartInvoke的基础设置、项目创建流程及...

    FLEX+Java开发(1).doc

    BlazeDS是Adobe提供的一个开源服务器端技术,允许Flex应用与Java应用程序服务器之间进行数据通信,支持AMF(Action Message Format)协议,提供高效的二进制数据传输。 2. **Flex与Spring的整合**:Spring是一个...

    Blazeds_Flex_Java_new

    ### Blazeds_Flex_Java_new:构建...综上所述,Flex + BlazeDS + Java 的组合不仅提高了 Web 应用程序的开发效率,还极大地改善了用户体验。通过合理配置和使用这些技术,可以构建出功能强大、性能优越的企业级应用。

    FlexAPI在企业计算环境中的应用

    FlexAPI的优点在于其能够跨平台运行,并且提供了丰富的用户界面组件库,使得开发者可以轻松地构建高质量的应用程序。 #### 三、Flex+Blazeds+J2EE体系架构 Flex+Blazeds+J2EE体系架构是将FlexAPI与Blazeds消息传递...

    Oracle + jdbcTemplate + Spring + Java + Flex 实现分页.docx

    在Oracle数据库环境中,结合Spring、Java和Flex进行分页查询是常见的需求。本文档主要讨论如何利用Oracle存储过程、jdbcTemplate(Spring框架的一个组件)以及Flex前端实现这一功能。 首先,Oracle存储过程是实现...

    Flex企业应用开发实战源代码

    接着剖析了Flex与Java的通信机制,以及Flex企业应用的客户端架构和服务器端架构;再接着详细讲解了BlazeDS框架的使用方法和工作原理,并通过迭代的方式完整地演示一个真实的Flex企业级应用的开发全过程,实战性极强...

    flex actionscript学习笔记

    总的来说,掌握Flex ActionScript 3.0对于构建富互联网应用程序(RIA)具有重要意义,它可以创建动态交互的用户界面,提供高性能的图形和数据处理能力,是开发Flash和Flex应用的必备技能。通过深入学习ActionScript ...

    SmartInvoke库和示例

    SmartInvoke库正是为了解决这个问题而诞生的,它提供了一种有效的方式,使得Flex界面API能够与Java或C#进行无缝对接,从而在桌面环境中构建出美观且功能丰富的应用程序。本文将深入探讨SmartInvoke的核心概念、工作...

    基于android系统的air程序开发

    这意味着开发者需要使用ActionScript或Flex构建应用。 2. **Flex框架使用建议**:尽管桌面版Flex框架可以用于移动开发,但Adobe官方并不推荐这样做。他们正在开发专门针对移动设备优化的Flex框架,代号为Slider。 ...

    非常经典java求职简历三套含项目介绍.pdf

    Flex是Adobe开发的用于创建富互联网应用程序的技术;Jxl和JFreeChart则分别用于Excel数据处理和图表生成。 3. **数据库与SQL**:开发者精通T-Sql,并能使用Oracle和简单了解MySQL数据库。T-Sql是Microsoft SQL ...

    java、c、c、vc、vc、vb的区别与联系.pdf

    Flex是用于构建富互联网应用的工具,利用ActionScript开发,提供出色的用户体验。Delphi曾经是桌面应用开发的热门选择,但现在市场份额已经下滑。 XML作为一种数据交换格式,无论在何种技术栈中都是必备的,尤其在...

    整合Flash Builder4.0+MyEclipse 8.6+BlazeDS+Sping 3.0+Hibernate3.3+MySQL5.5+Tomcat+JDK1.6.pdf

    这个整合过程展示了如何将所有这些组件组合起来,形成一个完整的、支持Flex前端和Java后端的Web应用程序开发环境。整个流程涵盖了数据库设计、前后端通信配置、服务端业务逻辑开发以及客户端UI设计等多个方面,是...

    java、c、c++、vc、vc++、vb的区别和联系.docx

    - C++ 既可以用于系统编程,也能用于开发应用程序,具有较高的性能和灵活性。 4. VC (Visual C++) 和 VC++: - VC++ 是微软公司的集成开发环境(IDE),主要用于C++编程,尤其是Windows平台上的应用开发。 - ...

    java、c、c++、vc、vc++、vb的区别和联系.pdf

    - VC++ 使用了Microsoft的MFC库,简化了Windows应用程序开发。 5. VB(Visual Basic): - VB 是微软开发的基于Basic语言的可视化编程工具,曾经流行于桌面应用开发。 - VB 提供了直观的拖放界面设计,适合快速...

    Flash CS3 中fl.*类库在 FB 中如何使用

    通过以上步骤和知识,你可以将Flash CS3的fl.*类库集成到FlexBuilder项目中,充分利用这些类库提供的功能来创建更复杂的Flash应用程序。同时,博客链接(https://swingchen.iteye.com/blog/125833)可能包含更多关于...

    非常经典java求职简历.pdf

    这些都是Java Web开发中的常用技术,用于构建B/S结构的应用程序。 - 此外,还提及了`JSF`, `J2EE`, `Flex`, `Jxl`, `JFreeChart`, `Structs`, `Struts2`, `DWR`, `T-Sql`, `SqlServer`, `MySql`, `MVC模式`, `工厂...

    Spring blazeDS

    - **工具**:Flex Builder、Flash CS4 Professional等工具,用于设计和开发客户端应用程序。 - **客户端/服务器通信**:利用AMF、XML、JSON、SOAP等多种协议进行数据交换。 - **服务端技术**:包括BlazeDS等数据服务...

Global site tag (gtag.js) - Google Analytics