服务器端:f = open(filename)data = f.read()f.close()response = HttpResponse(data,mimetype='application/octet-stream') response['Content-Disposition'] = 'at...
分类:
其他好文 时间:
2014-07-10 00:40:41
阅读次数:
204
最近在学javaweb技术,利用所学知识做了一个简单的项目,在服务器上实现给用户下载文件的功能。自动列出文件夹下的文件提供下载,支持中文文件名。
其中使用了tomcat来部署服务器,代码中应用了少许EL表达式和JSTL标签,使用了jsp和servlet,当然还有java和http的基础知识,但是个人觉得重点是http的Content-Disposition头信息和Content-type头信息在servlet中下载方面的应用...
分类:
编程语言 时间:
2014-06-24 20:09:06
阅读次数:
531
header("Content-Type:image/gif"); header('Content-Disposition: attachment; filename="logo3333.gif"'); header('Content-Length:'.filesize("logo.gif"));....
分类:
其他好文 时间:
2014-06-14 23:25:48
阅读次数:
220
1 header("Content-type:
application/vnd.ms-excel"); 2 header("Content-disposition: attachment;
filename=$EXPORT_TIME.xls"); 3 ...
分类:
其他好文 时间:
2014-05-31 03:30:28
阅读次数:
258
如果要将查询结果导出到Excel,只需将页面的Context-Type修改一下就可以了:header( "Content-Type:
application/vnd.ms-excel">如果希望能够提供那个打开/保存的对话框,Content-Disposition参数,Content-Disposi...
分类:
其他好文 时间:
2014-05-26 15:51:15
阅读次数:
172
publicvoidDownLoad(stringwordcode,stringwordname,stringwordcopyright)
{
stringoutfn="p_w_upload;filename={0}.txt";
Response.ContentType="application/txt;charset=GB2312";
Response.AddHeader("Content-Disposition",string.Format(outfn,wordcode));
Response.Write..
分类:
其他好文 时间:
2014-05-08 16:50:54
阅读次数:
269