码迷,mamicode.com
首页 > 其他好文 > 详细

ResponseUtil数据传递至前端

时间:2018-07-16 11:19:03      阅读:1140      评论:0      收藏:0      [点我收藏+]

标签:html   tostring   exception   https   utf-8   void   throws   string   span   

package com.zjx.util;

import java.io.PrintWriter;

import javax.servlet.http.HttpServletResponse;


public class ResponseUtil {

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

 

ResponseUtil数据传递至前端

标签:html   tostring   exception   https   utf-8   void   throws   string   span   

原文地址:https://www.cnblogs.com/duanwandao/p/9316080.html

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