flash与jsp,xml的交互

flash与jsp,xml的交互,
//as
on (release) {
 var loginData = new LoadVars();
 loginData.username = "我发出去去了";
 loginData.userpassword = "pp";
 loginData.sendAndLoad("http://localhost:8080/index.jsp", loginData, "post");
 //不启动浏览器的交互
 //loginData.load("http://localhost:8080/url.txt");
 loginData.onLoad = function(success:Boolean) {
  if (success) {
   trace(loginData.username);
   trace(loginData.userpassword);
  } else {
   trace("failed");
  }
 };
 myXML = new XML();
 myXML.ignoreWhite = true;//这样就不用怕空白行了!
 myXML.load("http://localhost:8080/myxml.xml");
 myXML.onLoad = function(success:Boolean) {
  //if (success == true) {  //同时
  //trace(myXML.status);
  if (myXML.status == 0) {//检查xml是否正确
   trace("XML is successfully loaded");
   trace(myXML.childNodes[0].childNodes[1]);
   trace(myXML.childNodes[0].childNodes[1].childNodes[0].nodeValue);   
  } else {
   trace("Something is wrong with the XML document");
  }
 };
}
index.jsp
<%@ page contentType="text/html;charset=UTF-8"%>
  <%
    request.setCharacterEncoding("UTF-8");
 String tmp="我传回来了";
 out.println("&username="+tmp);//这里一定要写成"&str="的形式,&一定不能少,str的名字要与你a中建的相同,“= ”号也不能少;
 //out.print("今天你快乐吗?");
 out.println("&userpassword="+"天空");
 System.out.println("正在运行中。。。。请勿打扰");
 System.out.println(request.getParameter("username"));
 //request.setAttribute("app","smile"); 
  %>
myxml.xml
<student>
<name>Thyme</name>
<age>18</age>
<score>
<English>94</English>
<Physics>86</Physics>
<Chemistry>99</Chemistry>
</score>
<grade>B</grade>
</student>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值