servlet 中使用smartupload 组件

ZDNet软件频道 时间:2008-07-01 作者: | 中国IT实验室 我要评论()
本文关键词:smartupload Servlet JSP
设定禁止上传的文件(通过扩展名限制),禁止上传带有exe,bat, jsp,htm,html扩展名的文件和没有扩展名的文件。
 response.setContentType("text/html;charset=gb2312");
      PrintWriter out = response.getWriter();
         smartupload mysmartupload = new smartupload();
     String currentDirectoryPath=null;
     String savePath="E:/public_html/java_root/NETDISK/WebRoot/NET_SPACE/1/我的音乐/";
          //mysmartupload.setDenyPhysicalPath(true);
          mysmartupload.setForcePhysicalPath(true);
           mysmartupload.initialize(this.getServletConfig(), request,response);
           // 设定上传限制
           // 1.限制每个上传文件的最大长度。10M
           mysmartupload.setMaxFileSize(10000000);

           // 2.限制总上传数据的长度。

           // mysmartupload.setTotalMaxFileSize(20000);

           // 3.设定允许上传的文件(通过扩展名限制),仅允许doc,txt文件。

           // mysmartupload.setAllowedFilesList("doc,txt");

           // 4.设定禁止上传的文件(通过扩展名限制),禁止上传带有exe,bat, JSP,htm,html扩展名的文件和没有扩展名的文件。

           // mysmartupload.setDeniedFilesList("exe,bat,JSP,htm,html,,");
         // Deny physical path


           try {
       mysmartupload.upload();
      } catch (smartuploadException e1) {
       // TODO Auto-generated catch block
       e1.printStackTrace();
      }

           //读取其它数据

           com.JSPsmart.upload.Request req = mysmartupload.getRequest();

           String title = req.getParameter("dest");

           //保存文件
           for (int i = 0; i < mysmartupload.getFiles().getCount(); i++) {

           com.JSPsmart.upload.File file = mysmartupload.getFiles().getFile(i);

           if (file.isMissing()) continue;
           try {
       file.saveAs(savePath+file.getFileName());
      } catch (smartuploadException e) {
       // TODO Auto-generated catch block
       e.printStackTrace();
       logger.info("e:"+e);
      }

           }
            out.println("dest:"+title);
      out.close();


百度大联盟认证黄金会员Copyright© 1997- CNET Networks 版权所有。 ZDNet 是CNET Networks公司注册服务商标。
中华人民共和国电信与信息服务业务经营许可证编号:京ICP证010391号 京ICP备09041801号-159
京公网安备:1101082134