你可以用json包:
org.json.JSONObject json = new org.json.JSONObject();
json.put("success", success);
json.put("name", "111");
request.setAttribute("json",json.toString());
或者自己拼字串
String s="{name:"1111", success:'true'}"
request.setAttribute("json",s);
拿字串就用request.getAttribute("json");