首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

spring文件下传上载(文件存存数据库)

2012-10-24 
spring文件上传下载(文件存存数据库)FileContent fileContent contactService.getFileContent(fileConte

spring文件上传下载(文件存存数据库)
FileContent fileContent = contactService.getFileContent(fileContentId);response.reset();//response.addHeader("Content-Disposition", "attachment;filename="+ fileContent.getAttachment().getFileName());response.addHeader("Content-Length", ""+fileContent.getFileContent().length);response.setContentType("bin");OutputStream toClient = new BufferedOutputStream(response.getOutputStream());response.setContentType("application/octet-stream");toClient.write(fileContent.getFileContent());toClient.flush();toClient.close();?

?

?

?

?

?

?

?

?

?

?

?

?

热点排行