菜鸟笔记
提升您的技术认知

response.setheader的各种用法-ag真人游戏

1、一秒刷新页面一次 response.setheader("refresh","1");

2、二秒跳到其他页面 response.setheader("refresh","2;url=otherpagename");

3、没有缓存:
response.setheader("pragma", "no-cache");
response.setheader("cache-control", "no-cache");

4、设置过期的时间期限  

response.setdateheader("expires", system.currenttimemillis() 自己设置的时间期限);

5、访问别的页面:response.setstatus(302); response.setheader("location","url");

6、下载文件

content-type的作用:该实体头的作用是让服务器告诉浏览器它发送的数据属于什么文件类型。

例如:当content-type 的值设置为text/html和text/plain时,前者会让浏览器把接收到的实体内容以html格式解析,后者会让浏览器以普通文本解析.

content-disposition 的作用:当content-type 的类型为要下载的类型时 , 这个信息头会告诉浏览器这个文件的名字和类型

response.setheader("content-type","video/x-msvideo");

response.setheader( "content-disposition", "attachment;filename=" new string( “文件名称”.getbytes("gb2312"), "iso8859-1" ) );

7、通知浏览器数据采用的压缩格式:response.setheader("content-encoding","压缩后的数据"); 

高速浏览器压缩数据的长度:response.setheader("content-length",压缩后的数据.length "");

8、高速浏览器图片或视频:response.setheader("content-type","这个参数在tomcat里conf下的web.xml里面找");

inputstream in= this.getservletcontext.getresourceasstream("/2.jpg");
int len=0;
byte buffer[]= new byte[1024]

outputstream out = response.getoutputstream();

while(len=in.read(buffer)>0){
  out.write(buffer,0,len)
}

9、高速浏览器已下载的形式:

response.setheader("content-disposition","attachment;filename=2.jpg");

inputstream in= this.getservletcontext.getresourceasstream("/2.jpg");
int len=0;
byte buffer[]= new byte[1024]

outputstream out = response.getoutputstream();

while(len=in.read(buffer)>0){
  out.write(buffer,0,len)
}

序号

内容类型

文件扩展名

描述

1

application/msword

doc

microsoft word

2

application/octet-stream bin

dms lha lzh exe class

可执行程序

3

application/pdf

pdf

adobe acrobat

4

application/postscript

ai eps ps

postscript

5

appication/powerpoint

ppt

microsoft powerpoint

6

appication/rtf

rtf

rtf 格式

7

appication/x-compress

z

unix 压缩文件

8

application/x-gzip

gz

gzip

9

application/x-gtar

gtar

tar 文档 (gnu 格式 )

10

application/x-shockwave-flash

swf

macromedia flash

11

application/x-tar

tar

tar(4.3bsd)

12

application/zip

zip

winzip

13

audio/basic

au snd

sun/next 声音文件

14

audio/mpeg

mpeg mp2

mpeg 声音文件

15

audio/x-aiff

mid midi rmf

midi 格式

16

audio/x-pn-realaudio

ram ra

real audio 声音

17

audio/x-pn-realaudio-plugin

rpm

real audio 插件

18

audio/x-wav

wav

microsoft windows 声音

19

image/cgm

cgm

计算机图形元文件

20

image/gif

gif

compuserve gif 图像

21

image/jpeg

jpeg jpg jpe

jpeg 图像

22

image/png

png

png 图像


1. application/x-www-form-urlencoded

最常见的 post 提交数据的方式了。浏览器的原生 form 表单,如果不设置 enctype 属性,那么最终就会以 application/x-www-form-urlencoded方式提交数据。 

2. text/xml

3.application/json

4. multipart/form-data

使用表单上传文件时,必须让 form 的 enctyped 等于这个值。 
并且http协议会使用boundary来分割上传的参数

网站地图