java拷贝对象:
BeanUtils.copyProperties(obj2,obj1);//后复前
Java对Json字符串解析: str=StringEscapeUtils.unescapeHtml4(""); JSONArray list=(JSONArray) JSONObject.parseArray(str);//json字符串转数组
Record record=JSONObject.parseObject(jsonObj.toJSONString(), Record.class);//把jsonObj对象转为java对象 Js处理json: Json转字符串: JSON.stringify([{},{}]);//json数组转字符串 字符串转json: JSON.parse(str);//字符串转json