怎么在jsp文件中把已經(jīng)讀取到的MySQL數(shù)據(jù)庫數(shù)據(jù)存為一個json格式字符串或?qū)ο笫裁吹模?/strong>
查詢一條數(shù)據(jù):<%JSONObject jsonObj=new JSONObject() jsonObj.put("name", name);;%>List 多條數(shù)據(jù)<% JSONArray arrayJSON=new JSONArray(); for(....){ JSONObject jsonObj=new JSONObject() jsonObj.put("name", name); arrayJSON.add(jsonObj);