flex in action (六)flex与后台Java进行交互(2)
2009-04-11 12:04:09 来源:WEB开发网核心提示:上一篇将架构已经做好了,现在使用的就是交互程序了,flex in action (六)flex与后台Java进行交互(2),如图建立:建立一个Java程序,切换到myeclipse视图下,然后返回一个字符串,打开webroot/web-inf/flex,找到remoting-config.xml,在src下建立,代码:
上一篇将架构已经做好了,
现在使用的就是交互程序了。
如图建立:
建立一个Java程序,切换到myeclipse视图下,在src下建立。
代码:
1 package com.duduli.li;
2
3 public class Input {
4 public String display(String name,String sex,String email){
5 System.out.println("your name is " + name);
6 System.out.println("your sex is " + sex);
7 System.out.println("your email is " + email);
8 return "你的姓名是 " + name + "t你的性别是 " + sex + "t你的Email是 " + email;
9 }
10 }
Input类下有个display方法,接受三个参数。然后返回一个字符串。
打开webroot/web-inf/flex,找到remoting-config.xml。
在service中加入。
1 <destination id="input">
2 <properties>
3 <source>com.duduli.li.Input</source> <scope>application</scope>
4 </properties>
5 </destination>
- ››include指令与<jsp:include>动作的区别
- ››Intent和IntentFilter详解
- ››ActionScript 2.0中的! 逻辑 NOT 运算符
- ››Interface继承至System.Object?
- ››input按钮在IE浏览器的兼容
- ››ActionScript 3.0 性能方面优化小知识整理收集
- ››Intent调用大全
- ››IntentService实现原理及内部代码
- ››Internet Explorer 无法打开
- ››Intel和Nokia宣称MeeGo将比Android更加开放且方便...
- ››innerText、outerText、innerHTML、outerHTML的区...
- ››Intent Android 详解
赞助商链接