本地文件上传到服务器指定位置_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 本地文件上传到服务器指定位置

本地文件上传到服务器指定位置

 2010/9/19 22:57:34  tzylwl  http://tzylwl.javaeye.com  我要评论(0)
  • 摘要:首先导入commons-fileupload-1.2.1.jar和commons-io-1.3.2.jarPrintWriterout=response.getWriter();DiskFileUploadfu=newDiskFileUpload();fu.setSizeMax(1024*1024*200);//最大为200Gfu.setSizeThreshold(1024*1024);//每次上传不能超过1GStringfileurl=WebConst.DBBACKPATH_TEMP
  • 标签:本地文件上传 服务器指定位置
首先导入commons-fileupload-1.2.1.jar和commons-io-1.3.2.jar

PrintWriter out=response.getWriter();
DiskFileUpload fu = new DiskFileUpload();
fu.setSizeMax(1024 * 1024 * 200);                 //最大为200G
fu.setSizeThreshold(1024 * 1024);                 //每次上传不能超过1G
String fileurl = WebConst.DBBACKPATH_TEMP;
String fileName =null;
       try {
        //开始读取上传的信息
List fileItems = fu.parseRequest(request);     
Iterator i = fileItems.iterator();
String filePath = null;

//处理每个表单的字段
while (i.hasNext()) {
FileItem fi = (FileItem) i.next();

if (fi.isFormField()) {
String content = fi.getString("gb2312");
request.setAttribute(fi.getFieldName(), content);
         }
         else {
       try {
         String pathSrc = fi.getName();
int start = pathSrc.lastIndexOf("\\");
fileName = pathSrc.substring(start + 1);
File file = new File(fileurl, fileName);
fi.write(file);
} catch (Exception e) {
}
}

}

} catch (FileUploadException e) {
e.printStackTrace();
}
  • 相关文章
发表评论
用户名: 匿名