ajax請求、servlet返回json數據
1、方式一
response.setcontenttype("text/html;charset=utf-8"); response.setheader("cache-control", "no-cache"); string str = "{'msg':'成功','success':'true'}"; out.print(str); out.flush(); out.close();
ajax請求獲取返回數據后, var objs=eval("("+data+")"); //轉化為json對象
2、方式二
response.setcontenttype("text/x-javascript;charset=utf-8"); //或者使用 response.setcontenttype("application/json; charset=utf-8"); response.setheader("cache-control", "no-cache"); message msg = new message(); msg.setsuccess("true"); msg.setmsg("成功"); jsonobject jsonobject = jsonobject.fromobject(msg); system.out.println(jsonobject.tostring()); printwriter out = response.getwriter(); // out.print(jsonobject.tostring()); // system.out.println("ddd"); // string str = "{\"msg\":\"成功\",\"success\":\"true\"}"; out.print(jsonobject.tostring()); out.flush(); out.close();