文件名称:commons-fileupload-1.2.1
文件大小:1.05MB
文件格式:ZIP
更新时间:2014-04-15 10:47:38
commons-fileupload-1.2.1
WEB开发中,用于上传和下载文件
//得到上传文件的保存目录
String uploadpath = this.getServletContext().getRealPath("/WEB-INF/upload");
String temppath = this.getServletContext().getRealPath("/WEB-INF/temp");
try{
DiskFileItemFactory factory = new DiskFileItemFactory();
factory.setRepository(new File(temppath));
ServletFileUpload upload = new ServletFileUpload(factory);
//upload.setFileSizeMax(1024*1024);
upload.setHeaderEncoding("UTF-8");
if(upload.isMultipartContent(request)==false){
return;
}
upload.setProgressListener(new ProgressListener(){
public void update(long pBytesRead, long pContentLength, int pItems) {
System.out.println("文件总大小为:" + pContentLength +",当前已上传:" + pBytesRead);
}
});
List