【JAVAWEB】HTTP协议
请求行中的GET称之为请求方式,请求方式有:
POST、GET、HEAD、OPTIONS、DELETE、TRACE、PUT
常用的有: GET、 POST
用户如没有设置,默认情况下浏览器向服务器发送的都是get请求,例如在浏览器直接输地址访问,点超链接访问等都是get,用户如想把请求方式改为post,可通过更改表单的提交方式实现。
不管POST或GET,都用于向服务器请求某个WEB资源,这两种方式的区别主要表现在数据传递上:
如请求方式为GET方式,则可以在请求的URL地址后以?的形式带上交给服务器的数据,多个数据之间以&进行分隔,例如:
GET /mail/1.html?name=abc&password=xyz HTTP/1.1
GET方式的特点:在URL地址后附带的参数是有限制的,其数据容量通常不能超过1K。
如请求方式为POST方式,则可以在请求的实体内容中向服务器发送数据,Post方式的特点:传送的数据量无限制。
Accept:客户机通过这个头,告诉服务器,它支持哪些数据类型
Accept-Charset::客户机通过这个头,告诉服务器,它支持的编码
Accept-Encoding: 客户机通过这个头,告诉服务器,支持哪种数据压缩格式
Accept-Language: 客户机采用的是哪个语言
Host:客户机通过这个头,告诉服务器,想访问服务器哪台主机
If-Modified-Since:客户机通过这个头,告诉服务器,数据缓存的时间
Referer:客户机通过这个头,告诉服务器,客户机是从哪个页面来的(防盗链)
User-Agent: 说明客户机操作系统信息,以及浏览器信息
Cookie:客户机通过这个头,可以带点数据给服务器
Connection
HTTP响应的细节——状态行
状态码用于表示服务器对请求的处理结果,它是一个三位的十进制数。响应状态码分为5类,如下所示:
100~199:表示成功接收请求,要求客户端继续提交下一次请求才能完成整个处理过程
200~299:表示成功接收请求并已完成整个处理过程,常用200
300~399:为完成请求,客户需进一步细化请求。例如,请求的资源已经移动一个新地址,常用302、307和304
400~499:客户端的请求有错误,常用404
500~599:服务器端出现错误,常用500
Location:服务器通过这个头告诉浏览器去访问哪个页面,这个头通常配合302状态码使用
Content-Encoding: 服务器通过这个头告诉浏览器,回送的数据采用的压缩格式
Content-Length: 服务器通过这个头告诉浏览器,回送的数据的大小
Content-Type: 服务器通过这个头告诉浏览器,回送数据的类型
Last-Modified: 服务器通过这个头告诉浏览器,资源的最后修改时间
Refresh:服务器通过这个头告诉浏览器,定时刷新网页
Content-Disposition: attachment; filename=aaa.zip:服务器通过这个头告诉浏览器,以下载方式打开数据
ETag: W/"7777-1242234904000":缓存相关的头,为每一个资源配一个唯一的编号
Expires: 0
Cache-Control: no-cache
Pragma: no-cache 这三个头组合使用,让浏览器不要缓存数据
Range头指示服务器只传输一部分Web资源。这个头可以用来实现断点续传功能。Range字段可以通过三种格式设置要传输的字节范围:
Range: bytes=1000-2000
传输范围从1000到2000字节。
Range: bytes=1000-
传输Web资源中第1000个字节以后的所有内容。
Range bytes=1000 传输最后1000个字节。
HTTP响应消息头字段
Accept-Ranges:这个字段说明Web服务器是否支持Range支持,则返回Accept-Ranges: bytes,如果不支持,则返回Accept-Ranges: none.
Content-Range:指定了返回的Web资源的字节范围。这个字段值的格式是:例子: Content-Range:1000-3000/5000
import java.io.ByteArrayOutputStream; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.OutputStream; import java.util.zip.GZIPOutputStream; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class ServletDemo extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { try { test5(response); } catch (Exception e) { e.printStackTrace(); } } /** * 通知浏览器下载数据 * @param response * @throws Exception */ private void test5(HttpServletResponse response) throws Exception { String path = this.getServletContext().getRealPath("/1.jpg"); FileInputStream fis = new FileInputStream(path); response.setHeader("Content-Disposition", "attachment; filename=1.jpg"); int len; byte[] buf = new byte[1024]; OutputStream out = response.getOutputStream(); while ((len = fis.read(buf)) > 0){ out.write(buf, 0, len); } out.close(); fis.close(); } /** * 定时刷新网页 */ private void test4(HttpServletResponse response) { response.setHeader("Refresh", "3;url=‘http://www.baidu.com‘"); } /** *向浏览器写入图片 * @param response * @throws FileNotFoundException */ private void test3(HttpServletResponse response) throws Exception { String path = this.getServletContext().getRealPath("/1.jpg"); FileInputStream fis = new FileInputStream(path); response.setHeader("Content-Type", "image/jpeg"); int len; byte[] buf = new byte[1024]; OutputStream out = response.getOutputStream(); while ((len = fis.read(buf)) > 0){ out.write(buf, 0, len); } out.close(); fis.close(); } /** * 压缩数据 * @param response * @throws IOException */ private void test2(HttpServletResponse response) throws IOException { String data = "aaaaa"; for (int i=0; i<10; i++){ data += data; } System.out.println("原始数据:"+data.getBytes().length); ByteArrayOutputStream bout = new ByteArrayOutputStream(); GZIPOutputStream gout = new GZIPOutputStream(bout); gout.write(data.getBytes());//将数据写入到底层流中 gout.close();//确保将数据写入到底层流中 //从底层流中获取数据 byte[] gzip = bout.toByteArray(); //告诉浏览器你的压缩格式.告诉浏览器以gzip方式打开回送的数据。。 response.setHeader("Content-Encoding", "gzip"); response.setHeader("Content-Length", gzip.length+""); response.getOutputStream().write(gzip); } /** * 请求重定向。 * @param response */ private void test1(HttpServletResponse response) { response.setStatus(302); response.setHeader("location", "/javaweb/1.html"); } public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); } }
import java.io.FileOutputStream; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.URL; public class DownloadDemo { public static void main(String[] args) throws Exception { URL url = new URL("http://localhost:8080/javaweb/1.txt"); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setRequestProperty("Range", "bytes=30-"); InputStream in = conn.getInputStream(); int len; byte[] buf = new byte[1024]; FileOutputStream out = new FileOutputStream("G:/1.txt",true); while ((len = in.read(buf)) > 0){ out.write(buf, 0, len); } out.close(); in.close(); } }
转载:http://blog.csdn.net/yigelangmandeshiren/article/details/7636418
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。