public class SaveHotKeySkillReq extends CommandBase {
@Resource
//数据库操作
private EntityManager em;
protected void execute() throws GMessageException {
CRequesthotKeyChange msg = pak.readMsg(CRequesthotKeyChange.class);
int item_id= msg.item_id;
int index = msg.index;
ActorSetting actorSetting = em.createQuery(ActorSetting.class).setParameter("actorId", actorSession.getActorId()).getSingleResult();
String skill = actorSetting.getSkillSetting();
JSONArray jsonArray = null;
if(skill != null && !skill.equals("")){
jsonArray = JSONArray.fromObject(skill);
}
if(jsonArray == null){
jsonArray = new JSONArray();
}
boolean isupdate = false;
for (Object object : jsonArray) {
JSONObject json = (JSONObject)object;
if(json.getInt("index") == index){
json.put("item_id", item_id);
isupdate = true;
}
}
if(isupdate == false){
JSONObject json = new JSONObject();
json.put("index", index);
json.put("item_id", item_id);
jsonArray.add(json);
}
if (actorSetting == null) {
throw new GMessageException(GMessageException.ACTOR_DATA_ERROR);
}
actorSetting.setSkillSetting(skill);
em.merge(actorSetting);
}
参考这个把Json数据从数据库取到前端,然后解析显示
Ajax返回Json在Java中的实现
http://www.cnblogs.com/lsnproj/archive/2012/02/09/2341524.html
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。