`
roway
  • 浏览: 48285 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论

使用servlet下载文件

 
阅读更多
package upload_download.servlet;

import java.io.ByteArrayOutputStream;
import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import upload_download.dao.UploadDownloadDAO;
import upload_download.vo.UploadDownload;

public class UploadDownloadDownServlet extends HttpServlet {

	private static final long serialVersionUID = 1L;

	public void doGet(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {

		this.doPost(request, response);
	}

	public void doPost(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {

		// 获取id
		String id = request.getParameter("id");

		UploadDownload uploadDownload = UploadDownloadDAO.findOneById(id);
		
		//UploadDownloadDAO.downloadTimesAdd(id);

		this.glsEnclosureDownload(request, response, uploadDownload);
	}

	/**
	 * 下载文件。
	 */
	public void glsEnclosureDownload(HttpServletRequest request,
			HttpServletResponse response, UploadDownload uploadDownload)
			throws ServletException, IOException {

		ByteArrayOutputStream outputStream = new ByteArrayOutputStream();

		outputStream.write(uploadDownload.getFile_data());

		// 文件名称
		String filename = uploadDownload.getFile_name().substring(0,
				uploadDownload.getFile_name().lastIndexOf("."));
		// 文件类型
		String file_type = uploadDownload.getFile_name().substring(
				uploadDownload.getFile_name().lastIndexOf("."));

		response
				.addHeader("Content-Disposition", "attachment; filename="
						+ new String(filename.getBytes("gbk"), "iso8859-1")
						+ file_type);
		// response.setHeader("Content-Disposition", "inline; filename=" + new
		// String(rewardPunish.getFile_name().getBytes("gbk"),"iso8859-1"));
		response.setContentType("application/octet-stream");
		response.setContentLength(outputStream.size());
		ServletOutputStream out = response.getOutputStream();
		outputStream.writeTo(out);
		out.flush();
		out.close();
		UploadDownloadDAO.downloadTimesAdd(uploadDownload.getId()+"");
	}

}


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics