1. 工具架包 gson-1.7.1.jar
2. 从数据库中获取的对象 obj
3. new Gson().toJson(obj)
得到的数据格式就成为 json的数据格式了 。
封装方法:toJson(Object obj)
public void toJson(Object obj){
HttpServletResponse response = ServletActionContext.getResponse();
response.setContentType("application/json;charset=utf-8");//设置响应方式为json类型数据,编码为utf-8.(response对象:即为响应,告诉浏览器以什么方式去接受服务端返回的响应数据)
try{
PrintWriter out = response.getWriter();
out.print(new Gson().toJson(obj)); out.flush(); out.close();}catch (IOException e) {
e.printStackTrace(); }}