码迷,mamicode.com
首页 >  
搜索关键字:content-disposition    ( 186个结果
js下载文件
本文的前提是:后台给的是一个可以下载的url的情况下的下载: 怎样的文件url才能触发浏览器的下载行为?(转自SF) 能触发浏览器下载的url有两类: response header中指定了Content-Disposition为attachment,它表示让浏览器把响应体作为附件下载到本地 (一般 ...
分类:Web程序   时间:2018-01-09 22:13:23    阅读次数:942
thinkphp csv.class.php文件导出gb2312格式csv
1 function creatcsv($filename,$array) 2 { 3 @ini_set('display_errors', 0); 4 header("Content-Disposition: attachment; filename=$filename.csv"); 5 head... ...
分类:Web程序   时间:2017-12-07 15:05:32    阅读次数:209
bypass safedog upload
这里附上两个payload: Content-Disposition: form-data; name=”up_picture”; filename=”[回车]1.php” Content-Disposition: form-data; name=”up_picture”; filename=[空格 ...
分类:其他好文   时间:2017-12-05 22:45:55    阅读次数:244
浏览器如何弹出下载框
php的header函数之设置content-type 下载xlsx文件 https://stackoverflow.com/questions/17770517/php-content-disposition-attachment-content-type ...
分类:其他好文   时间:2017-12-05 18:54:09    阅读次数:163
通过response.setHeader方法设置头文件
通过response.setHeader方法设置头文件 1.设置content-disposition响应头控制浏览器以下载的形式打开文件 response.setHeader("content-disposition", "attachment;filename="+fileName);2.设置输 ...
分类:其他好文   时间:2017-11-27 20:12:15    阅读次数:172
postman中 form-data、x-www-form-urlencoded、raw、binary的区别
1、form-data: 就是http请求中的multipart/form-data,它会将表单的数据处理为一条消息,以标签为单元,用分隔符分开。既可以上传键值对,也可以上传文件。当上传的字段是文件时,会有Content-Type来表名文件类型;content-disposition,用来说明字段的 ...
分类:Web程序   时间:2017-11-10 15:05:27    阅读次数:190
jsp 文件导出到Excel
Java代码加:response.setContentType("application/vnd.ms-excel");response.setHeader("Content-Disposition", "attachment; filename=" + new String((userExpand ...
分类:Web程序   时间:2017-10-27 20:40:03    阅读次数:153
Spring MVC文件下载的文件名编码问题
Spring MVC做文件下载功能时,遇到了文件名编码问题。经过百度,参考了以下两篇文章,解决了编码问题。 http://www.iefans.net/xiazai-wenjian-http-bianma-content-disposition/ https://yq.aliyun.com/arti ...
分类:编程语言   时间:2017-10-27 20:37:33    阅读次数:155
下载文件时,ie中文名乱码
response.addHeader("Content-disposition", "p_w_upload;filename="+newString(file.getName().getBytes("GBK"),"ISO8859-1"));
分类:其他好文   时间:2017-09-26 19:20:43    阅读次数:143
文件的下载
文件的下载: 1). 步骤: I. 设置 contentType 响应头: 设置响应的类型是什么 ? 通知浏览器是个下载的文件 response.setContentType("application/x-msdownload"); II. 设置 Content-Disposition 响应头: 通 ...
分类:其他好文   时间:2017-09-22 22:40:27    阅读次数:198
186条   上一页 1 ... 3 4 5 6 7 ... 19 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!