后台处理JSON数据

List entityList=new ArrayList();
				String jsondata =request.getParameter("jsondata");  //数据必须为'[..]'格式
				if(jsondata!=""&&jsondata!=null){
					JSONArray jsonArray =  new JSONArray(jsondata); //转化为Json数组
					for(int i=0;i

你可能感兴趣的:(json)