1. 工具架包 gson-1.7.1.jar數據庫
2. 從數據庫中獲取的對象 objjson
3. new Gson().toJson(obj)瀏覽器
獲得的數據格式就成爲 json的數據格式了 。app
封裝方法:toJson(Object obj)工具
public void toJson(Object obj){編碼
HttpServletResponse response = ServletActionContext.getResponse();對象
response.setContentType("application/json;charset=utf-8");//設置響應方式爲json類型數據,編碼爲utf-8.(response對象:即爲響應,告訴瀏覽器以什麼方式去接受服務端返回的響應數據)utf-8
try{get
PrintWriter out = response.getWriter();
out.print(new Gson().toJson(obj));
out.flush();
out.close();it
}catch (IOException e) {
e.printStackTrace();
}
}