今天发现SmartInvoke这一好东西,拿过来与大家分享分享!
原文地址 http://smartinvoke.cn/pages/document.jsp
通过它可以轻松的实现java与flex在本地的互相调用,利用java与flex构建强大的CS程序不是梦。
原文如下:
================================================
大家都知道flex的web application不能操作和访问本地文件,我们今天就通过
smartInvoke让flex可以轻松的访问到本地文件。
一:在java应用程序中创建一操作本地文件的test.CFile类,创建几个对文件进行
访问的方法;具体如下:
-
- package test;
-
- import java.io.File;
-
- import cn.smartinvoke.javaflex.gui.IServerObject;
-
- public class CFile implements IServerObject{
- public File file=null;
- public CFile(String fileName) {
- file=new File(fileName);
- }
- public long getSize(){
- return this.file.length();
- }
- public String getName(){
- return this.file.getName();
- }
-
-
-
- public static void main(String[] args) {
-
- }
-
- }
二:运用CodeTransform工具生成test.CFile类的代理类test.CFile.as,具体内容如下:
- package test
-
- import cn.smartinvoke.RemoteObject;
-
-
-
-
- public class CFile extends RemoteObject {
- public function CFile(){
- super();
- }
-
- public static function create_CFile(fileName:String):CFile{
- var file:CFile=new CFile();
- file.createRemoteObject(null,arguments);
- return file;
- }
-
- public function getName():String{
- var retObj:Object=this.call("getName",arguments);
- return retObj as String;
-
- }
- public function getSize():Number{
- var retObj:Object=this.call("getSize",arguments);
- return Number(retObj);
-
- }
- }
三:创建flex程序smartinvoke.mxml并调用CFile代理类
- <?xml version="1.0" encoding="utf-8"?>
- <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="onLoad()">
- <mx:Script>
- <![CDATA[
- import mx.controls.Alert;
- import test.CFile;
- import cn.smartinvoke.executor.Executor;
- /**
- *此swf加载完毕后调用此方法
- */
- function onLoad():void{
- //让smartInvoke为java与flex相互调用做好准备
- Executor.init();
- }
- /**
- *此方法调用java的test.CFile.getSize方法获得C:/win_yy.png文件的大小,并显示出来
- */
- function getFileName():void{
- //调用java创建test.CFile类对象,并将此对象包装成flex的test.CFile
- //代理对象并返回
- var file:CFile=CFile.create_CFile("C:/win_yy.png");
- //获得C:/win_yy.png文件的大小
- var fileSize:Number=file.getSize();
-
- Alert.show("文件大小为"+fileSize);
- }
- ]]>
- </mx:Script>
- <mx:Button label="getSize" click="getFileName()"/>
- </mx:Application>
-
四:利用swt 将flex 整合到java程序当中并运行整个程序。
- package test;
-
- import org.eclipse.swt.SWT;
- import org.eclipse.swt.layout.FillLayout;
- import org.eclipse.swt.widgets.Display;
- import org.eclipse.swt.widgets.Shell;
-
- import cn.smartinvoke.javaflex.gui.FlashContainer;
-
- public class DemoFirst extends Shell {
-
-
-
-
-
- public static void main(String args[]) {
- try {
- Display display = Display.getDefault();
- DemoFirst shell = new DemoFirst(display, SWT.SHELL_TRIM);
- shell.open();
- shell.layout();
- while (!shell.isDisposed()) {
- if (!display.readAndDispatch())
- display.sleep();
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
-
-
-
-
-
-
- public DemoFirst(Display display, int style) {
- super(display, style);
- createContents();
- setLayout(new FillLayout());
- }
-
-
-
-
- protected void createContents() {
- setText("smartinvoke测试程序");
-
- FlashContainer flashContainer=new FlashContainer(this);
-
- flashContainer.loadMovie(0, "E:/flexWork/smartinvoke/bin-debug/smartinvoke.swf");
- setSize(500, 375);
-
- }
-
- @Override
- protected void checkSubclass() {
-
- }
-
- }
运行DemoFirst程序就可以看到结果了^_^,是不是觉得一切都很简单呀
java调用flex也是类似
接下来我们模拟一执行后台业务的java工作线程,当此线程执行完毕后调用test.FlexShell类的
setStatus(String info)方法将info字符串显示在flex窗体中,以表示后台业务执行完成。
首先:在flex中创建test.FlexShell.as类,具体内容如下:
- package test
- {
- import cn.smartinvoke.IServerObject;
-
- import mx.controls.Alert;
-
- public class FlexShell implements IServerObject
- {
- public function FlexShell()
- {
- }
-
-
-
- public function setStatus(info:String):void{
- Alert.show(info);
- }
- }
- }
其次:使用CodeTransform工具生成test.FlexShell.as类的代理类test.FlexShell.java,具体内容如下:
- package test;
- import cn.smartinvoke.javaflex.gui.RemoteObject;
- import cn.smartinvoke.javaflex.gui.FlashContainer;
- public class FlexShell extends RemoteObject {
- public FlexShell(FlashContainer container){
- super(container);
- this.createRemoteObject(null);
- }
- public void setStatus(String info){
- this.call("setStatus",new Object[]{info});
- }
- }
最后:在java的DemoFirst类型中加入后台业务处理线程的逻辑如下:
- package test;
-
- import org.eclipse.swt.SWT;
- import org.eclipse.swt.layout.FillLayout;
- import org.eclipse.swt.widgets.Display;
- import org.eclipse.swt.widgets.Shell;
-
- import cn.smartinvoke.javaflex.gui.FlashContainer;
- import cn.smartinvoke.javaflex.gui.ILoadCompleteListener;
- import cn.smartinvoke.javaflex.util.Log;
-
- public class DemoFirst extends Shell {
-
-
-
-
-
- public static void main(String args[]) {
- try {
- Log.open=true;
- Display display = Display.getDefault();
- DemoFirst shell = new DemoFirst(display, SWT.SHELL_TRIM);
- shell.open();
- shell.layout();
- while (!shell.isDisposed()) {
- if (!display.readAndDispatch())
- display.sleep();
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
-
-
-
-
-
-
- public DemoFirst(Display display, int style) {
- super(display, style);
- createContents();
- setLayout(new FillLayout());
- }
-
-
-
-
- protected void createContents() {
- setText("smartinvoke测试程序");
-
- final FlashContainer flashContainer=new FlashContainer(this);
-
-
-
-
- flashContainer.completeListener=new ILoadCompleteListener(){
- public void run() {
-
- Thread task=new Thread(){
- public void run(){
-
- try {
- Thread.sleep(2000);
-
- FlexShell flexShell=new FlexShell(flashContainer);
- flexShell.setStatus("后退任务执行完毕...");
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
- }
- };
-
- task.setDaemon(true);
- task.start();
- }
- };
-
-
-
- flashContainer.loadMovie(0, "E:/flexWork/smartinvoke/bin-debug/smartinvoke.swf");
- setSize(500, 375);
-
- }
-
- @Override
- protected void checkSubclass() {
-
- }
-
- }
将smartinvoke.mxml该为如下:
- <?xml version="1.0" encoding="utf-8"?>
- <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
- layout="vertical" creationComplete="onLoad()">
- <mx:Script>
- <![CDATA[
- import test.FlexShell;
- import mx.controls.Alert;
- import test.CFile;
- import cn.smartinvoke.executor.Executor;
-
-
-
- var file:CFile=null;
-
- var flexShell:FlexShell;
- function onLoad():void{
-
- Executor.init();
- this.file=CFile.create_CFile("C:/win_yy.png");
- }
-
-
-
- function getFileName():void{
-
-
-
-
- var fileSize:Number=file.getSize();
-
- Alert.show("文件大小为"+fileSize);
-
- file.dispose();
-
- }
- ]]>
- </mx:Script>
- <mx:Label id="testLabel"/>
- <mx:Button label="getSize" click="getFileName()"/>
- </mx:Application>
重新编译mxml,并运行DemoFirst 程序就可以看到效果了。
到现在我们已经轻松的实现java与flex之间互相调用了,是不是有种幸福来得太突然的感觉^_^