码迷,mamicode.com
首页 > Web开发 > 详细

servlet返回json字符串

时间:2018-02-25 13:05:08      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:字符   content   http   row   mob   exception   int   write   tostring   

servlet返回json字符串

public static void write(HttpServletResponse response,Object o)throws Exception{
response.setContentType("text/html;charset=utf-8");
PrintWriter out=response.getWriter();
JSONObject responseJSONObject = JSONObject.fromObject(o); //
out.println(responseJSONObject.toString());
out.flush();
out.close();
}

servlet返回json字符串

标签:字符   content   http   row   mob   exception   int   write   tostring   

原文地址:https://www.cnblogs.com/lvwm/p/8468768.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!