java文件下载时中文文件名显示不出来

publicvoiddoPost(HttpServletRequestrequest,HttpServletResponseresponse)throwsServletE... public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String file = new String(request.getParameter("file_path").getBytes("ISO8859-1"),"GBK");
//String file = request.getParameter("file_path");
file = file.substring(file.lastIndexOf("/"), file.length());
String file_path = new String(request.getParameter("file_name").getBytes("ISO8859-1"),"GBK");
//String file_path = request.getParameter("file_name");
String fileName = file;
file = request.getRealPath("/")+"uploadfile\\" + File.separator + file;
fileName = fileName.replace('+', ' ');
file_path = file_path.replace('+', ' ');
file = URLDecoder.decode(file, "GBK");
file_path = URLDecoder.decode(file_path, "GBK");
System.out.println("file--->"+file);
System.out.println("filepath-->"+file_path);
response.reset();
response.setContentType("application/x-download;charset=GBK");
//response.setContentType("application/octet-stream;charset=GBK");
response.setHeader("Content-Disposition", "attachment;filename=" + file_path);
BufferedOutputStream bos = null;
BufferedInputStream bis = null;
try {
bis = new BufferedInputStream(new FileInputStream(file));
bos = new BufferedOutputStream(response.getOutputStream());
byte[] buff = new byte[1024];
int bytesRead;
while (-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
bos.write(buff, 0, bytesRead);
}
} catch (Exception ex) {
} finally {
try {
bis.close();
bos.close();
} catch (Exception e) {
}
}
response.flushBuffer();
bis = null;
bos = null;
}
展开
 我来答
若以下回答无法解决问题,邀请你更新回答
乌微月2S
2013-07-18 · TA获得超过5037个赞
知道大有可为答主
回答量:5361
采纳率:42%
帮助的人:2882万
展开全部
页面encodeURI传递中文名了?
后台再decode?
你这么直接传中文能行吗?
没试过,不知道啊。
你的file是测试用的?说详细点儿吧。信息太少了不好判断。
追问

是的,文件名是中文的,要是英文文件名的话可以显示出来

追答
你这个是的,是回答哪个问题,和你沟通费劲啊,新手?
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式