这个开始以为很难,后来发现实现起来很简单,在 gwt 的表现层框架 gxt 中有一个 FlashComponent组件可以用来嵌套flash到 gwt的客户端
第一步:
url="http://{server.name}:{server.port}/{context.root}/xx.swf
FlashComponent flashComponet = new FlashComponent(url);
第二步:
把flashComponet 组件放到需要的地方就可以了:
ContentPanel cp = new ContentPanel();
cp.add(flashComponet );
这样就可以实现把flash 嵌套到 GWT 的 client 端了。
顺便说下,在 Google code 上面有一个 叫做gwt flash bridge 的项目,还不错
它是在adobe flex bridge 的基础上,借助gwt 提供的 javascript overlay type 和jsni 对其进行了封装,实现了在gwt 环境下,使用java语言 访问和使用flash平台上的功能
项目地址:http://code.google.com/p/gwt-flash-bridge/
现在还没利用上来,先作为备用的项目。