文件的下载DownLoad

代码很普通,但是在实际用的时候 有需要注意的地方:

1 ,文件名要重新编码。 

URLEncoder.encode("金瓶梅", "UTF-8");

2,文件的大小长度要告诉客户端.

response.setHeader("Content-Length", dfile.length() + "");
public void doPost(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
		response.addHeader("Content-Disposition", "attachment; filename="
				+ URLEncoder.encode("金瓶梅", "UTF-8")); //文件名重新url编码
		File dfile = new File("c\\金瓶梅.txt");
		response.setHeader("Content-Length", dfile.length() + ""); //将文件长度告诉客户端
		InputStream fis = new FileInputStream(dfile);
		byte b[] = new byte[1024 * 1024];
		OutputStream ros = response.getOutputStream();
		int len = -1;
		while ((len = fis.read(b)) != -1) {
			ros.write(b, 0, len);
		}
		fis.close();
		ros.flush();
		ros.close();
	}




你可能感兴趣的:(download)