使用commons-fileupload-1.2.2.jar插件文件上传

看网上许多都关于利用commons-fileupload文件上传,打多数使用servlet,并且使用 fileItem.writer("目录","文件名");

我下边使用的是利用Streams.copy,简单易用,并且不需要配置什么

1、首先下载commons-fileupload-1.2.2.jar;


package cn.bosun.cms.article.util;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.fileupload.FileItemIterator;
import org.apache.commons.fileupload.FileItemStream;
import org.apache.commons.fileupload.servlet.ServletFileUpload;
import org.apache.commons.fileupload.util.Streams;

public class FileUploadUtil{

    public void upload(HttpServletRequest request, HttpServletResponse response){
    InputStream stream = null;
    BufferedInputStream bis = null;
    BufferedOutputStream bos = null;
    String fullLocalPath = "";
    try{
        ServletFileUpload upload = new ServletFileUpload();
        FileItemIterator iter = upload.getItemIterator(request);
        while(iter.hasNext()){
            FileItemStream item = (FileItemStream)iter.next();
            stream = item.openStream();
            if(!item.isFormField()){
            if(item.getName() != null && !item.getName().trim().equals("")){
                String upLoadName = item.getName();
                //上传在服务器上的文件路径,此处在使用过程中应该用日期和随机数组成文件名,以防止文件名一致被覆盖
                fullLocalPath = "d:/picTemp/" + "teste.jpg";
                bis = new BufferedInputStream(stream);
                bos = new BufferedOutputStream(new FileOutputStream(fullLocalPath));
                Streams.copy(bis, bos, true);
        
            }
    
            }
        }
    }catch(Exception e){
        e.printStackTrace();
        String errorMsg = "对不起,文件上传失败!" + e.toString();
        request.setAttribute("PicInfoUpload.error", errorMsg);
    }finally{
        if (stream != null){
            try{
                stream.close();
            }catch(IOException e){
                stream = null;
            }
        }
        if (bis != null){
            try{
                    bis.close();
                }catch(IOException e){
                    bis = null;
                }
            }
        if (bos != null){
            try{
                bos.close();
            }catch(IOException e){
                bos = null;
            }
        }
   }
  }
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
第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、付费专栏及课程。

余额充值