s.push({
"江苏":["南京"]
})
我写的是js里的处理方法,这样插入进去实在最后,与你的顺序不太符合好像,你可以自己调整一下,java里我没有试,好像是add..方法,你找一下
首先引用json 对应的jar包1.commons-lang.jar
2.commons-beanutils.jar
3.commons-collections.jar
4.commons-logging.jar
5.ezmorph.jar
6.json-lib-2.2.2-jdk15.jar
实现方法就是 JSONObjectjson = JSONObject.fromObject(map)
json一般都是配合ajax一起使用的 我做做过的小例子 粘给你 你可以研究一下js部分
//获取卡的金额
function get_money(){
var str=document.getElementById("pk_card_type").value
//alert(str)
var url = '/member_h.do'
var pars = 'method=getMoney'
pars+='&pk_card_type='+str
var ajax = new Ajax.Request(
url,
{method:'post',parameters:pars,onComplete:show_money}
)
}
//回调函数 写入卡的金额
function show_money(dataResponse)
{
var data = eval('(' + dataResponse.responseText + ')')
var price=0
price=data.price
var collection_fees=0
collection_fees=data.collection_fees
document.getElementById("recharge").value=price
document.getElementById("collection_fees").value=collection_fees
}
action部分
public ActionForward getMoney(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
response.setContentType("text/htmlcharset=utf-8")
try {
IElementaryFileService ggsv = new ElementaryFileService()
String pk_card_type = request.getParameter("pk_card_type")
Card_TypeVO ctvo=new Card_TypeVO()
ctvo=ggsv.queryByPK(Card_TypeVO.class, pk_card_type)
PrintWriter out = response.getWriter()
// 这里的数据拼装一般是从数据库查询来的
JSONObject jsonObject = new JSONObject()
if(ctvo!=null){
jsonObject.put("price", ctvo.getCard_money())
jsonObject.put("collection_fees", ctvo.getCash())
}else{
jsonObject.put("price", 0)
jsonObject.put("collection_fees", 0)
}
out.print(jsonObject.toString())
out.flush()
out.close()
return null
} catch (Exception e) {
e.printStackTrace()
return null
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)