1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
    /**
     * @author liweihan
     * @time 2016/12/23 11:56
     * @description  返回JSON格式!如果含有<br/> ,text/html就显示变化了!
     * @param request
     * @param response
     * @param result
     * @param callBack
     * 参考:http://blog.sina.com.cn/s/blog_a03d702f010143tw.html
     *  text/html           HTML
        text/plain          TXT
        text/xml             XML
        application/json           json字符串
 
        text/html的意思是将文件的content-type设置为text/html的形式,浏览器在获取到这种文件时会自动调用html的解析器对文件进行相应的处理。
        text/plain的意思是将文件设置为纯文本的形式,浏览器在获取到这种文件时并不会对其进行处理。
     */
    public void printJsonAutoEncodeNoCache(HttpServletRequest request, HttpServletResponse response, String result, String callBack) {
        if (StringUtils.isNotBlank(callBack)) {
            result = new StringBuffer(ToolUtil.filterHtml(callBack)).append("(").append(result).append(")").toString();
        }
        byte[] outBytes;
        try {
            String encoding = "gbk";
            if (StringUtils.isNotBlank(request.getParameter("encoding"))) {
                encoding = request.getParameter("encoding");
            }
            if ("gbk".equalsIgnoreCase(encoding.trim())) {
                response.setContentType("application/json; charset=GBK");
                outBytes = result.getBytes("gbk");
            else {
                response.setContentType("application/json; charset=UTF-8");
                outBytes = result.getBytes("utf-8");
            }
            response.setHeader("Pragma""No-cache");
            response.setHeader("Cache-Control""no-cache");
            response.setDateHeader("Expires"0);
            response.getOutputStream().write(outBytes);
//            response.flushBuffer();
            /**
             * 2016-07-11-han-add - explain:
             * response.flushBuffer():Forces any content in the buffer to be written to the client.
             * A call to this method automatically commits the response, meaning the status code and headers will be written.
             *
             * java.lang.Object
                extended byjava.io.OutputStream
                extended byjavax.servlet.ServletOutputStream
 
               OutputStream.flush(): 刷新此输出流并强制写出所有缓冲的输出字节。
               OutputStream.close():关闭此输出流并释放与此流有关的所有系统资源。
             */
            response.getOutputStream().flush();
            response.flushBuffer();
            response.getOutputStream().close();
        catch (IOException e) {
            logger.error(" ====== print result error", e);
        }
    }

注意一下,如果我们要返回JSON格式的数据,尽量设置response.setContentType()为application/json,这样可以防止运营商劫持!然后在我们的返回结果中加一些广告的JS代码!

response.setContentType()简单了解

相关文章:

  • 2021-09-30
  • 2022-01-16
  • 2021-06-20
  • 2021-12-20
  • 2021-12-22
  • 2021-06-27
  • 2021-06-20
  • 2021-07-27
猜你喜欢
  • 2022-12-23
  • 2021-11-30
  • 2021-12-02
  • 2021-06-01
  • 2021-06-19
  • 2021-08-15
  • 2021-10-13
相关资源
相似解决方案