java实现下载文件,如果文件名为中文,下载后内容为空,求解释!

BufferedInputStreambis=null;BufferedOutputStreambos=null;HttpURLConnectionconn=null;p... BufferedInputStream bis=null;
BufferedOutputStream bos=null;
HttpURLConnection conn=null;
path=path.replaceAll("%20", " ");
try {
URL url=new URL(path);
conn=(HttpURLConnection) url.openConnection();
conn.setConnectTimeout(6000); //设置连接超时时间6s
conn.connect();

//response.reset();
response.setContentType("application/x-msdownload;");
response.addHeader("Content-Disposition","attachment;filename=\""+new String(fileName.getBytes("gb2312"),"iso8859-1")+"\"");
response.setContentType("application/octet-stream");
bis=new BufferedInputStream(conn.getInputStream());
byte[] buffer = new byte[bis.available()];
int len;
bos = new BufferedOutputStream(response.getOutputStream());//new FileOutputStream(fileName);
while((len = bis.read(buffer))!=-1){
bos.write(buffer,0,len);
}
bos.flush();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally{ //关闭各类流

if(conn!=null){
conn.disconnect();
}
if(bis!=null){
try {
bis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(bos!=null){
try {
bos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}

}

当下载中文文件名的文件时,程序报错,如图,所示为出错的地方。
展开
 我来答
xuhaobooo
2011-07-29 · TA获得超过282个赞
知道小有建树答主
回答量:103
采纳率:0%
帮助的人:72.1万
展开全部
你的path变量的值是怎么来的。如果只是中文名有问题,可以尝试用URLDecoder.decode来对文件名进行URL编码转换。你debug跟踪下在URL url=new URL(path);这句时,你的path是什么值,他是否可以访问。
匿名用户
2011-07-29
展开全部
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
CrazySunSky
2011-07-29 · 超过25用户采纳过TA的回答
知道答主
回答量:153
采纳率:0%
帮助的人:52.1万
展开全部
这个好像不是大问题。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式