ajax后台处理返回json值

  public ActionForward xsearch(ActionMapping mapping,ActionForm form,HttpServletRequest request,HttpServletResponse response)
			throws Exception {
		String parentId = request.getParameter("parentId");
		String supplier = request.getParameter("supplier");
		List itemList = new ArrayList();
		if(parentId.equals("")){
			parentId="0";
		}
		Map map=new TawApTreeServlet().getTypeList(parentId,supplier);
		
		for (Iterator rowIt = map.keySet().iterator(); rowIt.hasNext();) {
			String id = (String) rowIt.next();
			TawCommonsUIListItem uiitem = new TawCommonsUIListItem();
			uiitem.setItemId(id);
			uiitem.setText((String)map.get(id));
			uiitem.setValue(id);
			itemList.add(uiitem);
		}

		response.setContentType("text/xml;charset=UTF-8");

		// 返回JSON对象
		response.getWriter().print(JSONUtil.list2JSON(itemList));
		return null;
	}

相关文章

IE6是一个非常老旧的网页浏览器,虽然现在很少人再使用它,但...
PHP中的count()函数是用来计算数组或容器中元素的个数。这个...
使用 AJAX(Asynchronous JavaScript and XML)技术可以在不...
Ajax(Asynchronous JavaScript and XML)是一种用于改进网页...
本文将介绍如何通过AJAX下载Excel文件流。通过AJAX,我们可以...
Ajax是一种用于客户端和服务器之间的异步通信技术。通过Ajax...