Http(3)

响应行

1、常见的状态:

  • 200:表示请求处理完美返回
  • 302:表示请求需要经进一步细化
  • 404:表示客户访问的资源找不到。
  • 500: 表示服务器的资源发送错误。(服务器内部错误)

2、常见的响应头

  • Location: http://www.it315.org/index.jsp   -表示重定向的地址,该头和302的状态码一起使用。
  • Server:apache tomcat                 ---表示服务器的类型
  • Content-Encoding: gzip                 -- 表示服务器发送给浏览器的数据压缩类型
  • Content-Length: 80                    --表示服务器发送给浏览器的数据长度
  • Content-Language: zh-cn               --表示服务器支持的语言
  • Content-Type: text/html; charset=GB2312   --表示服务器发送给浏览器的数据类型及内容编码
  • Last-Modified: Tue, 11 Jul 2000 18:23:51 GMT  --表示服务器资源的最后修改时间
  • Refresh: 1;url=http://www.it315.org     --表示定时刷新
  • Content-Disposition: attachment; filename=aaa.zip --表示告诉浏览器以下载方式打开资源(下载文件时用到)
  • Transfer-Encoding: chunked
  • Set-Cookie:SS=Q0=5Lb_nQ; path=/search   --表示服务器发送给浏览器的cookie信息(会话管理用到)
  • Expires: -1                           --表示通知浏览器不进行缓存
  • Cache-Control: no-cache
  • Pragma: no-cache
  • Connection: close/Keep-Alive           --表示服务器和浏览器的连接状态。close:关闭连接 keep-alive:保存连接

3、HttpServletResponse对象

HttpServletResponse对象修改响应信息:

  响应行:

  response.setStatus()  设置状态码

响应头:

   response.setHeader("name","value")  设置响应头

实体内容:

   response.getWriter().writer();   发送字符实体内容

  response.getOutputStream().writer()  发送字节实体内容

public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        /**
         * 通过response对象改变相应信息
         */
            //1、响应行
            //response.setStatus(404);    //修改状态码
            //response.sendError(404);        //发送404状态码+404错误页面

        //2、改变响应头
        response.setHeader("server", "JBoss");

        //3、实体内容
        //    response.getWriter().write("1、hello world");    //字符内容
        response.getOutputStream().write("2、hello world".getBytes());     //字节内容
    }

案例分析

一、请求的重定向

Http(3)

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class Demo2 extends HttpServlet {

    /**
     * 案例一:请求重定向
     * 相当于超链接跳转页面
     */
    private static final long serialVersionUID = 1L;

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        /**
         *  需求:跳转到另一个页面
         *  使用重定向,发送一个302状态码+location的响应头
         */
//        response.setStatus(302);
//        response.setHeader("location", "/HttpTest/index.jsp");    //location是响应头

        //请求重定向的简化写法
        response.sendRedirect( "/HttpTest/index.jsp");
    }
}

案例二

public class Demo3 extends HttpServlet {

    /**
     * 案例  定时刷新
     */
    private static final long serialVersionUID = 1L;

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        /**
         * 页面定时刷新
         * 原理:浏览器认识refresh头,得到refresh头后重新申请资源
         */
        //response.setHeader("refresh", "1");     //每隔一秒刷新本页面
        /**
         * 隔n秒之后转到另外的资源
         */
        response.setHeader("refresh", "3;url=/HttpTest/index.jsp");    //隔三秒之后跳到index.jsp压面
    }

}

案例三

public class Demo4 extends HttpServlet {

    /**
     * 将图片写出到浏览器
     */
    private static final long serialVersionUID = 1L;

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        response.setContentType("image/jpg");
        /**
         * 设置已下载的方式打开文件
         */
        File file=new File("F:/4.jpg");
        response.setHeader("Content-Disposition", "attachment;filename="+file.getName());
        FileInputStream in=new FileInputStream(file);
        byte[] buf=new byte[1024];
        int len=0;
        //开始写
        while ((len=in.read(buf))!=-1) {
            response.getOutputStream().write(buf,0,len);
        }

    }

}

Http(3)

随机推荐

  1. 《ARC以及非ARC的讨论》

    ARC的机制是什么?它在那里放入retain/release函数调用? 请停止思考这些问题,把更多的精力放在下面的问题上,比如你的程序逻辑,对象的强,弱引用,对象的所属关系,可能的循环引用等问题上. ...

  2. cookie session URL重写 与考试

    状态管理.Cookie.Session.URL重写 HTTP协议:无状态的连接(每次连接都是新的请求)1.隐藏字段 <input type="hidden" name=&qu ...

  3. python2&period;7到python3代码转换脚本2to3的一些介绍

       你的位置: Home ‣ Dive Into Python 3 ‣ 难度等级: ♦♦♦♦♦   使用2to3将代码移植到Python 3 ❝ Life is pleasant. Death is ...

  4. 小调网 经典电影 豆瓣评分 tampermonkey脚本

    // ==UserScript== // @name 小调网 // @namespace http://tampermonkey.net/ // @version 0.1 // @descriptio ...

  5. ural 1091&period; Tmutarakan Exams 和 codeforces 295 B&period; Greg and Graph

    ural 1091 题目链接:http://acm.timus.ru/problem.aspx?space=1&num=1091 题意是从1到n的集合里选出k个数,使得这些数满足gcd大于1 ...

  6. Linux下的QQ折腾记

        用Linux最重要是要把QQ装好了,webqq很不好用.qq for linux是古董,Linux还是悲惨,很多软件有windows版本,有mac版本,就是不出linux版本.只好用wine来 ...

  7. redis使用Java学习

    一.连接到redis服务 import redis.clients.jedis.Jedis; public class RedisJava { public static void main(Stri ...

  8. 关于package&period;json的理解

    在我们打包项目的时候或者使用node的时候,常常会看到package.json这个文件,里面乱七八糟的一大堆json,开始的时候没注意,以为是使用node或者npm的时候自动创建的,后来自己写demo ...

  9. Java&colon; How to resolve Access Restriction error

    Issue: Access restriction: The constructor 'BASE64Decoder()' is not API (restriction on required lib ...

  10. 【MySQL】MySQL内连接,左连接,右连接查询

    概念 INNER JOIN(内连接):获取两个表中字段匹配关系的记录.也就是只会返回共有的内容. LEFT JOIN(左连接):获取左表所有记录,即使右表没有对应匹配的记录. RIGHT JOIN(右 ...

上一篇:HDU 4336 Card Collector 期望dp+状压


下一篇:Mybatis之分页插件pagehelper的简单使用