commons-fileupload-1.2.2实现java上传下载

package com.xp.file.action;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.sql.SQLException;
import java.util.Date;
import java.util.Iterator;
import java.util.List;

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

import org.apache.commons.fileupload.FileItem;
import org.apache.commons.fileupload.FileUploadException;
import org.apache.commons.fileupload.disk.DiskFileItemFactory;
import org.apache.commons.fileupload.servlet.ServletFileUpload;

import com.xp.file.bean.Files;
import com.xp.file.business.FilesService;
import com.xp.space.bean.AbstractCustomer;
import com.xp.space.bean.Customer;

public class SourceUploadAction extends HttpServlet {
    @Override
    public void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        HttpSession session = request.getSession();
        AbstractCustomer user = (Customer) session.getAttribute("user");
        // 文件名
        String value = "";
        if (user == null) {// 如果用户未登陆
            System.out.println(user);
            session.setAttribute("login", false);
            // 跳转到登陆页面
            request.getRequestDispatcher("sourcepage.jsp").forward(request,
                    response);
        } else {// 如果用户已登陆
            session.setAttribute("login", true);
            FilesService fs = new FilesService();

            Files file = new Files();

            // 获取用户名
            String userName = user.getName();
            // 获取用户ID
            int userId = user.getCustomerId();

            file.setOwner(userName);
            file.setOwnerId(userId);
            file.setDate(new Date());
            file.setPassedCheck(1);

            /* 文件处理正式开始 */

            // 实例化一个硬盘文件工厂,用来配置上传组件ServletFileUpload
            DiskFileItemFactory dfif = new DiskFileItemFactory();
            dfif.setSizeThreshold(4096);// 设置上传文件时用于临时存放文件的内存大小,这里是4K.多于的部分将临时存在硬盘

            // 用以上工厂实例化上传组件
            ServletFileUpload sfu = new ServletFileUpload(dfif);
            // sfu.setHeaderEncoding("UTF-8");

            List fileList = null;
            try {

                // 文件存放真正位置
                String uploadRealPath = request.getSession()
                        .getServletContext().getRealPath("/")
                        + "upload//";
                File UploadRealPath = new File(uploadRealPath);
                UploadRealPath.mkdirs();

                // 文件存放URL位置
                String uploadURLPath = request.getScheme() + "://"
                        + request.getServerName() + ":"
                        + request.getServerPort() + request.getContextPath()
                        + "/upload/";

                fileList = sfu.parseRequest(request);

                // 从request得到 所有 上传域的列表
                Iterator it = fileList.iterator();

                // URL地址,下载链接

                while (it.hasNext()) {
                    // fileItem共有四项sourcetitle,sourceartical,sourcefile,sourcepostsubmit
                    FileItem fi = (FileItem) it.next();
                    // 字段名
                    String fieldName = fi.getFieldName();
                    if (fi.isFormField()) {
                        // String fieldName = fi.getFieldName();
                        value = new String(fi.getString()// 上传资源  可能会导致乱码
                                .getBytes("ISO-8859-1"), "UTF-8");
                    } else if (!fi.isFormField()) {
                        // 文件名
                        value = fi.getName();
                        value = value.substring((value.lastIndexOf("//") + 1)).replace(" ", "_");
                        InputStream is = fi.getInputStream();
                        OutputStream os = new FileOutputStream(UploadRealPath
                                .getPath()
                                + "/" + value);
                        byte[] buffer = new byte[1024];
                        int read = 0;
                        while ((read = is.read(buffer, 0, 1024)) != -1) {
                            os.write(buffer, 0, read);
                        }
                        session.setAttribute("filename", value);
                    }
                    if (fieldName.equalsIgnoreCase("sourcetitle")) {
                        file.setTitle(value);
                    } else if (fieldName.equalsIgnoreCase("sourceartical")) {
                        file.setDesciption(value);
                    } else if (fieldName.equalsIgnoreCase("sourcefile")) {
                        file.setFileUploadName(value);
                        file.setFileSaveName(uploadRealPath+value);
                        file.setFileURLPath(uploadURLPath + value);
                    } else {
                        System.out.println("something with upload");
                    }
                }

                // 上传列表都存到file
                if (fs.saveFilesToPersist(file)) {
                    System.out.println("上传成功");
                } else {
                    throw new SQLException("不能保存到数据库");
                }

            } catch (FileUploadException e) {// 处理文件尺寸过大异常
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            } catch (SQLException e) {
                e.printStackTrace();
            }
            /* 文件处理非正式结束 */

            request.getRequestDispatcher("uploadsuccessfully.jsp").forward(
                    request, response);
        }
    }

    @Override
    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        doPost(request, response);
    }
}

第1个上传组件commons-fileupload =============commons-fileupload ================ common-fileupload组件是apache的一个开源项目之一,可以从http://jakarta.apache.org/commons/fileupload/下载。该组件简单易用,可实现一次上传一个或多个文件,并可限制文件大小。 -下载后解压zip包,将commons-fileupload-1.1.1.jar,和commons-io-1.2.jar(这里我们用的是更新的版本,但是用法是一样的)复制到tomcat的webapps\你的webapp\WEB-INF\lib\下,如果目录不存在请自建目录。 新建一个servlet: FileUpload.java用于文件上传: package com.drp.util.servlet; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.fileupload.*; import java.util.*; import java.util.regex.*; import java.io.*; import org.apache.commons.fileupload.servlet.*; import org.apache.commons.fileupload.disk.DiskFileItemFactory; public class FileUpload extends HttpServlet { private String uploadPath = ""; // 用于存放上传文件的目录 private File tempPath = new File("D:\\Tomcat 5.5\\webapps\\drp1.2\\tempimages\\"); // 用于存放临时文件的目录 public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { res.setContentType("text/html; charset=GB18030"); PrintWriter out = res.getWriter(); System.out.println(req.getContentLength()); System.out.println(req.getContentType()); DiskFileItemFactory factory = new DiskFileItemFactory(); // maximum size that will be stored in memory //允许设置内存中存储数据的门限,单位:字节 factory.setSizeThreshold(4096); // the location for saving data that is larger than getSizeThreshold() //如果文件大小大于SizeThreshold,则保存到临时目录 factory.setRepository(new File("D:\\Tomcat 5.5\\webapps\\drp1.2\\tempimages")); ServletFileUpload upload = new ServletFileUpload(factory); // maximum size before a FileUploadException will be thrown //最大上传文件,单位:字节 upload.setSizeMax(1000000); try { List fileItems = upload.parseRequest(req); // assume we know there are two files. The first file is a small //
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值