content-Disposition
String fileName = "中国.doc";
//方法1:
response.setheader("content-Disposition", "attachment; filename=" + java.net.URLEncoder.encode(fileName, "UTF-8"));
//方法2:使用指定编码,并告诉浏览器编码类型
response.setHeader("Content-Disposition", "attachment; filename*=UTF-8''" + URLEncoder.encode(fileName, "UTF-8");
//方法3:
response.setHeader("Content-Disposition", "attachment; filename=" + new String(fileName.getBytes("gb2312"), "ISO-8859-1"));
文章最后发布于: 2019-01-23 08:57:20
相关阅读
下载速度太慢?下一个东西动辄要几个小时怎么办?迅雷速度不给力怎么办?没关系,一张图片教你怎么设置,让迅雷速度翻倍,比别人快四倍!
在arcgis中,对源文件进行编辑后,保存了工程文件格式包括.mxd格式
Cotton /綿 /棉Linen /麻布 /亚麻Silk
Android创建文件报错file.createNewFile
在程序中有需要使用照相机照照片,并上传一张图片,目前的做法是:先将一张图片存储在某一个地方,然后在进行上传,但是在创建文件的过程中
PDB 文件 什么是 PDB 文件 PDB (Program Data Base) 即程序的基本数据,是 VS 编译链接时生成的文件,每个程序集(EXE 或 DLL)都有一个