码迷,mamicode.com
首页 > Web开发 > 详细

JSP中用Commons-FileUpload组件控制文件的上传

时间:2018-01-16 00:44:46      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:filetype   commons   2.4   通过   控制   文件的   common   indexof   代码   

说明:需要添加commons-fileupload-1.2.2.jar和commons-io-2.4.jar

操作的示例代码如下:

<%

  FileItem item = (FileItem)iter,next();

  if(!item.isFormFileld()){

    String filename=item.getName();

    //通过Arrays类的asList()方法创建固定长度的集合

  List<String> fileType = Arrays.asList("gif","bmp","jpg");

  String ext = fileName.substring(fileName.lastIndexOf(".")+1);

  if(!fileType.contains(ext)){

  out.print("上传文件失败,文件类型只能为gif,bmp,jpg");

  }else{

  if(fileName!= null && !fileName.equals("")){

  File fullFile = new File(item.getName());

  File saveFile = new File(uploadFilePath,fullFile.getName());

  item.wrtie(saveFile );

uploadFileName = fullFile.getName();

out.print("上传后的文件名是:"+uploadFileName);

  }

  }

  }

%>

JSP中用Commons-FileUpload组件控制文件的上传

标签:filetype   commons   2.4   通过   控制   文件的   common   indexof   代码   

原文地址:https://www.cnblogs.com/qxl1234/p/8290009.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!