首页  ·  知识 ·  编程语言
struts实现的图片的上传和下载
网友  CSDN http://blog.csdn.net/quxiuer/  Java  编辑:德仔   图片来源:网络
dtJava code /dtdd pre!-- Code highlighting produced by Actipro CodeHighlighter (freewar
Java code
public class FileAction extends DispatchAction { private JDBConnection connection =new JDBConnection(); //以下方法实现文件的上传 public ActionForward upLoadFile(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { Date date = new Date(); FileActionForm fileActionForm = (FileActionForm) form; FormFile file = fileActionForm.getFile(); //获取当前的文件 String dir = servlet.getServletContext().getRealPath("/image"); String path = upload(dir, file); //实现文件的上传的功能,并且返回上传服务器的路径 path="image/"+path; String fileName = Chinese.toChinese(fileActionForm.getFileName()); //获取文件的名称 String fileSize = String.valueOf(file.getFileSize()); String fileDate = DateFormat.getDateInstance().format(date); String sql = "insert into tb_file values('" + fileName + "','" + fileSize + "','" + fileDate + "','" + path + "')"; connection.executeUpdate(sql); connection.closeConnection(); return mapping.findForward("upLoadFileResult"); } public String upload(String dir, FormFile formFile) throws Exception { Date date = new Date(); //取欲上传的文件的名字和长度 String fname = formFile.getFileName(); //将上传时间加入文件名 int i = fname.indexOf("."); String name = String.valueOf(date.getTime()); String type = fname.substring(i + 1); fname = name + "." + type; InputStream streamIn = formFile.getInputStream(); //创建读取用户上传文件的对象 File uploadFile = new File(dir); //创建把上传数据写到目标文件的对象 if (!uploadFile.exists() || uploadFile == null) { //判断指定路径是否存在,不存在则创建路径 uploadFile.mkdirs(); } String path = uploadFile.getPath() + "/" + fname; OutputStream streamOut = new FileOutputStream(path); int bytesRead = 0; byte[] buffer = new byte[8192]; while ((bytesRead = streamIn.read(buffer, 0, 8192)) != -1) { streamOut.write(buffer, 0, bytesRead); } streamOut.close(); streamIn.close(); formFile.destroy(); return fname; } //实现文件的下载 public ActionForward downFile(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { String path = request.getParameter("path"); BufferedInputStream bis = null; BufferedOutputStream bos = null; OutputStream fos = null; InputStream fis = null; String filepath = servlet.getServletContext().getRealPath("/" + path); File uploadFile = new File(filepath); fis = new FileInputStream(uploadFile); bis = new BufferedInputStream(fis); fos = response.getOutputStream(); bos = new BufferedOutputStream(fos); response.setHeader("Content-disposition", "attachment;filename=" + URLEncoder.encode(path, "utf-8")); int bytesRead = 0; byte[] buffer = new byte[8192]; while ((bytesRead = bis.read(buffer, 0, 8192)) != -1) { bos.write(buffer, 0, bytesRead); } bos.flush(); fis.close(); bis.close(); fos.close(); bos.close(); return null; } }
本文作者:网友 来源:CSDN http://blog.csdn.net/quxiuer/
CIO之家 www.ciozj.com 微信公众号:imciow
   
免责声明:本站转载此文章旨在分享信息,不代表对其内容的完全认同。文章来源已尽可能注明,若涉及版权问题,请及时与我们联系,我们将积极配合处理。同时,我们无法对文章内容的真实性、准确性及完整性进行完全保证,对于因文章内容而产生的任何后果,本账号不承担法律责任。转载仅出于传播目的,读者应自行对内容进行核实与判断。请谨慎参考文章信息,一切责任由读者自行承担。
延伸阅读