js接收并转化Java中的数组对象的⽅法
在做项⽬时,要向ocx控件下发命令,就要在js中得到java中的对象,然后拼成⼀种格式,下发下去。。。当对象是⼀个时⽐较简单,但如果对象是⼀个数组时,就略显⿇烦了。
开始我以为有简单的⽅式,可以直接进⾏内容的转化,后来发现不可以,⽹上说js与java没有桥接的东西,所以呢:
我的解决⽅案是:在action层,将java的对象数组转化为Json串,⽽在js中,再把json转化为数组对象。
1.将java的对象数组转化为Json串:
要⽤到两个类:
net.sf.json.JSONObject
net.sf.json.JSONArray
//将每个vehicle对象拼接为json格式的对象,⽤于命令下发
JSONObject json = JSONObject.fromObject(v); //v即对象
jsonArray.add(json);
//System.out.String());
//⽤于命令下发
sendCommandList = String();
将其放在for循环中。
2.js将其转化为对象数组:
//注意:此时得到的是Json串。
//注意:要加上escapeJavaScript="false" escape="false" ,否则传过来Json字符串中的引号都会被解析成为"
var szJsonStr = '<s:property escapeJavaScript="false" escape="false" value="sendCommandList" />';
最后:
//把Json字符串转化为对象数组
var addVehicleArray = eval(szJsonStr);
在⽤的时候,就直接⽤addVehicleArray[i].vehicleType;即可以了。。。。。。
扩展:
JSONObject与JSONArray的使⽤
1.JAR包简介
要使程序可以运⾏必须引⼊JSON-lib包,JSON-lib包同时依赖于以下的JAR包:
commons-lang.jar
commons-beanutils.jar
commons-collections.jar
commons-logging.jar
ezmorph.jar
json-lib-2.2.2-jdk15.jar
2.JSONObject对象使⽤
JSON-lib包是⼀个beans,collections,maps,java arrays 和XML和JSON互相转换的包。在本例中,我们将使⽤JSONObject类创建JSONObject对象,然后我们打印这些对象的值。为了使⽤JSONObject对象,我们要引⼊"net.sf.json"包。为了给对象添加元素,我们要使⽤put()⽅法。
2.1.实例1
package jsontest;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
public class JSONObjectSample {
// 创建JSONObject对象
private static JSONObject createJSONObject() {
JSONObject jsonObject = new JSONObject();
jsonObject.put("username", "huangwuyi");java数组字符串转数组
jsonObject.put("sex", "男");
jsonObject.put("QQ", "413425430");
jsonObject.put("Min.score", new Integer(99));
jsonObject.put("nickname", "梦中⼼境");
return jsonObject;
}
public static void main(String[] args) {
JSONObject jsonObject = ateJSONObject();//静待⽅法,直接通过类名+⽅法调⽤
// 输出jsonobject对象
System.out.println("jsonObject:" + jsonObject);
// 判读输出对象的类型
boolean isArray = jsonObject.isArray();
boolean isEmpty = jsonObject.isEmpty();
boolean isNullObject = jsonObject.isNullObject();
System.out.println("是否为数组:" + isArray + ",是否为空:" + isEmpty
+ ", isNullObject:" + isNullObject);
// 添加属性,在jsonObject后⾯追加元素。
jsonObject.element("address", "福建省厦门市");
System.out.println("添加属性后的对象:" + jsonObject);
// 返回⼀个JSONArray对象
JSONArray jsonArray = new JSONArray();
jsonArray.add(0, "this is a jsonArray value");
jsonArray.add(1, "another jsonArray value");
jsonObject.element("jsonArray", jsonArray);
//在jsonObject后⾯住家⼀个jsonArray
JSONArray array = JSONArray("jsonArray");
System.out.println(jsonObject);
System.out.println("返回⼀个JSONArray对象:" + array);
// 添加JSONArray后的值
// {"username":"huangwuyi","sex":"男","QQ":"413425430","Min.score":99,"nickname":"梦中⼼境","address":"福建省厦门市","jsonArray":["this is a jsonArray value","another jsonArray value"]}    System.out.println("结果=" + jsonObject);
// 根据key返回⼀个字符串
String username = String("username");
System.out.println("username==>" + username);
// 把字符转换为 JSONObject
String temp = String();
JSONObject object = JSONObject.fromObject(temp);
// 转换后根据Key返回值
System.out.println("qq=" + ("QQ"));
}
}
输出结果
jsonObject:{"username":"huangwuyi","sex":"男","QQ":"413425430","Min.score":99,"nickname":"梦中⼼境"}
是否为数组:false,是否为空:false, isNullObject:false
添加属性后的对象:{"username":"huangwuyi","sex":"男","QQ":"413425430","Min.score":99,"nickname":"梦中⼼境","address":"福建省厦门市"} {"username":"huangwuyi","sex":"男","QQ":"413425430","Min.score":99,"nickname":"梦中⼼境","address":"福建省厦门市","jsonArray":["this is a jsonArray value","another jsonArray value"]}
返回⼀个JSONArray对象:["this is a jsonArray value","another jsonArray value"]
结果={"username":"huangwuyi","sex":"男","QQ":"413425430","Min.score":99,"nickname":"梦中⼼境","address":"福建省厦门市","jsonArray":["this is a jsonArray value","another jsonArray value"]} username==>huangwuyi
qq=413425430
2.2.实例2.
package jsontest;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
public class JSONTest {
public static void main(String args[])
{
JSONObject jsonObj0 = new JSONObject();
JSONObject jsonObj = new JSONObject();
JSONObject jsonObj2 = new JSONObject();
JSONObject jsonObj3 = new JSONObject();
JSONArray jsonArray = new JSONArray();
/
/创建jsonObj0
jsonObj0.put("name0", "zhangsan");
jsonObj0.put("sex1", "female");
System.out.println("jsonObj0:"+jsonObj0);
//创建jsonObj1
jsonObj.put("name", "xuwei");
jsonObj.put("sex", "male");
System.out.println("jsonObj:"+jsonObj);
//创建jsonObj2,包含两个条⽬,条⽬内容分别为jsonObj0,jsonObj1
jsonObj2.put("item0", jsonObj0);
jsonObj2.put("item1", jsonObj);
System.out.println("jsonObj2:"+jsonObj2);
//创建jsonObj3,只有⼀个条⽬,内容为jsonObj2
jsonObj3.element("j3", jsonObj2);
System.out.println("jsonObj3:"+jsonObj3);
//往JSONArray中添加JSONObject对象。发现JSONArray跟JSONObject的区别就是JSONArray⽐JSONObject多中括号[]
jsonArray.add(jsonObj);
System.out.println("jsonArray:"+jsonArray);
JSONObject jsonObj4 = new JSONObject();
jsonObj4.element("weather", jsonArray);
System.out.println("jsonObj4:"+jsonObj4);
}
}
输出结果:
jsonObj0:{"name0":"zhangsan","sex1":"female"}
jsonObj:{"name":"xuwei","sex":"male"}
jsonObj2:{"item0":{"name0":"zhangsan","sex1":"female"},"item1":{"name":"xuwei","sex":"male"}}
jsonObj3:{"j3":{"item0":{"name0":"zhangsan","sex1":"female"},"item1":{"name":"xuwei","sex":"male"}}}
jsonArray:[{"name":"xuwei","sex":"male"}]
jsonObj4:{"weather":[{"name":"xuwei","sex":"male"}]}
以上这篇js接收并转化Java中的数组对象的⽅法就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。