JAVA实现文件下载,浏览器端得到数据没反应
代码如下
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
//得到要下载的文件名称
String filename=request.getParameter("filename");
//文件存放的路径,合成绝对路径
String dir = this.getServletContext().getRealPath("/");
String filepath=dir+"bksh"+"\\"+filename;
//得到这个文件的对象
File f=new File(filepath);
//response的编码方式为.doc下载
response.setContentType("application/msword");
//写明要下载的文件的大小
response.setContentLength((int)file.length());
//文件名
response.setHeader("Content-Disposition", "attachment; filename=" + filename);
//独处文件的IO流
FileInputStream fis=new FileInputStream(file);
BufferedInputStream buff=new BufferedInputStream(fis);
byte [] b=new byte[1024];//相当读文件的缓存
long k=0;//该值用于计算当前实际下载了多少字节
//response对象得到输出流
OutputStream myout=response.getOutputStream();
//开始循环下载
while(k<file.length()){
int j=buff.read(b,0,1024);
k+=j;
//将b中的数据写到客户端的内存
myout.write(b,0,j);
}
//将写入到客户端的内存的数据,刷新到磁盘
myout.flush();
firbug显示服务器已经返回了数据,但是貌似浏览器不认为它需要下载这些数据。。。
求高人解答,在线等 --------------------编程问答-------------------- 好吧,没人来帮个忙么=。= --------------------编程问答--------------------
--------------------编程问答-------------------- 似乎少了这一句:
response.setCharacterEncoding("utf-8");
response.setContentType("multipart/form-data");
String downloadFileName = "";
if (request.getHeader("User-Agent").toUpperCase().indexOf("MSIE") > 0) {
downloadFileName = URLEncoder.encode(fileRealName, "UTF-8");
} else {
downloadFileName = new String(fileRealName.getBytes("UTF-8"), "ISO8859-1");
}
response.setHeader("Content-disposition", "attachment; filename=" + downloadFileName);
response.setContentType("multipart/form-data"); --------------------编程问答--------------------
浏览器得到的数据。。。我觉得是编码问题? --------------------编程问答--------------------
response.setContentType()不是确定输出流的格式么,还是输出什么文件都能用"multipart/form-data" --------------------编程问答-------------------- 愁死了,一个问题弄一天了,求解决TAT --------------------编程问答-------------------- response.setCharacterEncoding("utf-8");
response.setContentType((mimetype != null) ? mimetype : "application/octet-stream");
response.setContentLength(workbook.getBytes().length);
response.setHeader("Content-Disposition", "attachment;filename=" + playdate + ".xls"); --------------------编程问答--------------------
唯一的明白人是这个哥们,要下载你得告诉浏览器,而不是发了数据就完事了。
response.setHeader("Content-type", "application-download");--------------------编程问答--------------------
加了这句,浏览器还是没有反应,response.setHeader()有什么顺序要求么?
"application-download"是说这个servlet能够提供所有格式的文件下载么?
现在我想实现jpg格式的图片下载和DOC格式的文件下载,response要怎么设置?
补充:Java , Web 开发