zoukankan      html  css  js  c++  java
  • 发送各种数据到客户端的工具类

    package cn.itcast.common.web;
    
    import java.io.IOException;
    
    import javax.servlet.http.HttpServletResponse;
    
    /**
     * 异步返回各种格式
     * json
     * xml
     * text
     * @author smn
     *
     */
    public class ResponseUtils {
    
        //发送内容  
        public static void render(HttpServletResponse response,String contentType,String text){
            response.setContentType(contentType);
            try {
                response.getWriter().write(text);
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
        //发送的是JSON
        public static void renderJson(HttpServletResponse response,String text){
            render(response, "application/json;charset=UTF-8", text);
        }
        //发送xml
        public static void renderXml(HttpServletResponse response,String text){
            render(response, "text/xml;charset=UTF-8", text);
        }
        //发送text
        public static void renderText(HttpServletResponse response,String text){
            render(response, "text/plain;charset=UTF-8", text);
        }
        
        
    }
  • 相关阅读:
    第十八周作业
    第十七周作业
    第十六周作业
    第十五周作业
    第十四周作业
    第十三周作业
    第十二周作业
    第二阶段考试
    第十周作业
    启航,带着梦想出发!
  • 原文地址:https://www.cnblogs.com/lm970585581/p/7442509.html
Copyright © 2011-2022 走看看