zoukankan      html  css  js  c++  java
  • struts2 文件上传

    (一)单文件上传
    第一步:在WEB-INF/lib下加入commons-fileupload-1.2.1.jar、commons-io-1.3.2.jar。这两个文件可以从http://commons.apache.org/下载。
    第二步:把form表的enctype设置为:“multipart/form-data“,如下:

    第三步:在Action类中添加以下属性,属性红色部分对应于表单中文件字段的名称:

    public class HelloWorldAction{
      private File uploadImage;//得到上传的文件
      private String uploadImageContentType;//得到文件的类型
      private String uploadImageFileName;//得到文件的名称
      //这里略省了属性的getter/setter方法
      public String upload() throws Exception{
        String realpath = ServletActionContext.getServletContext().getRealPath("/images");
        File file = new File(realpath);
        if(!file.exists()) file.mkdirs();
        FileUtils.copyFile(uploadImage, new File(file, uploadImageFileName));
        return "success";
      }
    }

    (二)多文件上传
    第一步:在WEB-INF/lib下加入commons-fileupload-1.2.1.jar、commons-io-1.3.2.jar。这两个文件可以从http://commons.apache.org/下载。
    第二步:把form表的enctype设置为:“multipart/form-data“,如下:

    第三步:在Action类中添加以下属性,属性红色部分对应于表单中文件字段的名称:

    public class HelloWorldAction{
      private File[] uploadImages;//得到上传的文件
      private String[] uploadImagesContentType;//得到文件的类型
      private String[] uploadImagesFileName;//得到文件的名称
      //这里略省了属性的getter/setter方法
      public String upload() throws Exception{
        String realpath = ServletActionContext.getServletContext().getRealPath("/images");
        File file = new File(realpath);
        if(!file.exists()) file.mkdirs();
        for(int i=0 ;i<uploadImages.length; i++){ File uploadImage = uploadImages[i];
        FileUtils.copyFile(uploadImage, new File(file, uploadImagesFileName[i]));
    }
        return "success";
      }}
  • 相关阅读:
    TFS 2012使用简介(一)
    Android手机应用程序开发环境配置(Eclipse+Java+ADT)
    关于 all-delete-orphan
    Rest中的XML与JSON的序列化与反序列化
    C#Base64编码
    Visual Studio 2013支持Xamarin的解决方案
    【转】[WCF REST] 帮助页面与自动消息格式(JSON/XML)选择
    【转】 MEF 和 MAF
    Enable tfs feature in sharepoint
    Using a local farm account for a SharePoint 2013 installation
  • 原文地址:https://www.cnblogs.com/lllini/p/11955377.html
Copyright © 2011-2022 走看看