java吧 关注:1,236,993贴子:12,705,588
  • 2回复贴,共1

【求助】servlet本地下载没问题,部署到服务器的下载文件名乱码

只看楼主收藏回复

不废话,贴代码
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
OutputStream out = null; // 输出响应正文的输出流
InputStream in = null; // 读取本地文件的输入流
// 获取filename请求参数
String filename = request.getParameter("filename");
String filepath = request.getParameter("filepath");
if (null == filename) {
out = response.getOutputStream();
out.write("Please input filename.".getBytes());
out.close();
return;
}
filename=new String(filename.getBytes("ISO-8859-1"),"UTF-8");
UploadConfiguration cfg = UploadConfiguration.getConfiguration();
String realPath = cfg.getPhysicalPath(filepath);
// 获得读取本地文件的输入流
in = new FileInputStream(new File(realPath));
int length = in.available();
// 设置响应正文的MIME类型
response.setContentType("application/force-download");
response.setHeader("Content-length", String.valueOf(length));
response.setHeader("Content-Disposition", "attachment;filename=\"" + BumfUtils.toUtf8String(filename) + "\" ");
response.setHeader("ContentType","text/html;charset=UTF-8");
// 把本地文件中的数据发送给客户
out = response.getOutputStream();
int bytesRead = 0;
byte[] buffer = new byte[512];
while ((bytesRead = in.read(buffer)) != -1) {
out.write(buffer, 0, bytesRead);
}
in.close();
out.close();
}


IP属地:重庆1楼2014-07-28 11:32回复
    这个是Util.java
    public static String toUtf8String(String s) {
    StringBuffer sb = new StringBuffer();
    for (int i=0;i<s.length();i++) {
    char c = s.charAt(i);
    if (c >= 0 && c <= 255) {
    sb.append(c);
    } else {
    byte[] b;
    try {
    b = Character.toString(c).getBytes("utf-8");
    } catch (Exception ex) {
    System.out.println(ex);
    b = new byte[0];
    }
    for (int j = 0; j < b.length; j++) {
    int k = b[j];
    if (k < 0) k += 256;
    sb.append("%" + Integer.toHexString(k).
    toUpperCase());
    }
    }
    }
    return sb.toString();
    }


    IP属地:重庆2楼2014-07-28 11:33
    回复
      有人帮忙看下么


      IP属地:重庆3楼2014-07-28 11:34
      回复