美文网首页
response如何返回json到前台

response如何返回json到前台

作者: 悦者生存 | 来源:发表于2017-11-15 14:39 被阅读11次

使用JSONObject需要引用org.json包

response.setCharacterEncoding("UTF-8");

response.setContentType("application/json; charset=utf-8");

PrintWriter out =null;

try{

        JSONObject res =newJSONObject();

        res.put("success","true");

        res.put("msg",hostHolder.getUser());

        out = response.getWriter();

        out.append(res.toString());

}

catch(Exception e){

        e.printStackTrace();

        response.sendError(500);

}

相关文章

网友评论

      本文标题:response如何返回json到前台

      本文链接:https://www.haomeiwen.com/subject/cqmhmxtx.html