毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> java技术 >> 正文

用java IO流从数据库中读取文件docx下载文件损坏

更新时间:2015-1-6:  来源:毕业论文

用java IO流从数据库中读取文件下载,以前下载.doc,.xls都没有问题。但是发现.docx. xlsx下载时,出现了文件损坏的提示。

String fileId = request.getParameter("fileId");
            AttachFileVO attachFileVO = new AttachFileVO();
            attachFileVO.setFileId(fileId);      
            AttachFileVO attachFile = applicationService.getAttachFile(attachFileVO);
            String fileName = attachFile.getFileName();
            String formatFileName = CommonUtil.encodingFileName(fileName); 
            if(attachFile!=null&&attachFile.getFileContent()!=null){
                InputStream in = null;
                OutputStream os = null;
                try{              
                    response.reset();
                    response.setContentType(attachFile.getFileType());
                    response.setHeader("Content-Disposition", "attachment;filename="+formatFileName);
 
                    in = new ByteArrayInputStream(attachFile.getFileContent());
                    byte[] buffer = new byte[1024];
                    os = response.getOutputStream();
                    while (in.read(buffer) > 0) {
                        os.write(buffer);
                    }              
                }catch(Exception ex){
                    throw ex;
                }finally{
                    if(in!=null){
                        in.close();
                    }
                    if(os!=null){
                        os.close();
                    }                  
                }              
                return null;
            }

代码改成

   in = new ByteArrayInputStream(attachFile.getFileContent());
                byte[] buffer = new byte[1024];
                os = response.getOutputStream();
                int len = 0;
                while ((len = in.read(buffer)) > 0) {
                    os.write(buffer, 0, len);
                }         

每次填充往缓冲数组中填充1024字节,当循还到最后一次的时候流中已经没有1024个字节了,比如最后一次只有100个了,那么会填充缓冲数组的前100个位置字节,那么100以后位置的字节就是保留了上一次的字节,所以写入文件的时候,字节已经错乱了,所以你打开的时候就报错了咯

os.write(buffer, 0, len);这个的意思是将buffer里面0~len的字节写到输出流里面,下载的文件转换成字节流的字节数一般是不能被1024整除的,当输出最后一部分字节的时候,可能没有1024个字节,那么buffer字节数组里多出来的位置就是初始值0,这些也写到输出流里面去了,也就是多写了很多个值为0的字节进去,所以格式不对。 sorry,语言组织不好,见谅。

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。