`

struts2 多文件上传

阅读更多

 

upload.jsp

-----------------------------------------------------------------------------------------------------------------------------------

    <body>
        <form action="control/employee/list" method="post" enctype="multipart/form-data">
            文件1:<input type="file" name="upload"> <br />
            文件2:<input type="file" name="upload"> <br />
            文件3:<input type="file" name="upload"> <br />
            文件4:<input type="file" name="upload"> <br />
            <input type="submit" value="提交">
        </form>
    </body>

 

UploadAction.java

-----------------------------------------------------------------------------------------------------------------------------------

 

package org.taink.struts.action;

import java.io.File;
import java.io.IOException;

import org.apache.commons.io.FileUtils;
import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionContext;

public class UploadAction{
    private File[] upload;
    private String[] uploadContentType;
    private String[] uploadFileName;

    public void setUpload(File[] upload) {
        this.upload = upload;
    }

    public void setUploadContentType(String[] uploadContentType) {
        this.uploadContentType = uploadContentType;
    }

    public void setUploadFileName(String[] uploadFileName) {
        this.uploadFileName = uploadFileName;
    }

    public String execute() throws IOException {

        // 根据文件夹名称,获得服务器的真实路径
        String realPath = ServletActionContext.getServletContext().getRealPath(
                "upload");
        // 根据文件夹路径构造出一个文件对象
        File saveFile = new File(realPath);
        // 如果文件路径不存在就创建文件夹
        if (!saveFile.exists()) {
            saveFile.mkdirs();
        }
        if (null != upload) {
            for (int i = 0; i < upload.length; i++) {
                System.out.println("文件临时位置: " + upload[i]);
                System.out.println("文件名称: " + uploadFileName[i]);
                System.out.println("文件类型: " + uploadContentType[i]);
                System.out.println("文件大小: " + upload[i].length());
                // 将临时文件夹中的文件复制到指定的文件夹中
                FileUtils.copyFile(upload[i], new File(saveFile, uploadFileName[i]));
            }
            ActionContext.getContext().put("message", "上传文件成功");
        }
        return "success";
    }

}

分享到:
评论

相关推荐

    struts2多文件上传

    Struts2多文件上传是Java Web开发中常见的一项功能,用于允许用户一次上传多个文件。在Struts2框架中,实现这一功能涉及到一系列的技术和步骤。以下是对这一知识点的详细说明: 1. **Struts2框架**:Struts2是一个...

    Struts2多文件上传

    总结来说,Struts2多文件上传涉及到Struts2配置、Action编写、HTML表单设计以及结果处理等多个环节。通过以上步骤,你可以在Struts2应用中实现稳定可靠的多文件上传功能。不过,实际项目中还需要考虑错误处理、安全...

    struts2多文件上传显示进度

    Struts2是一个非常流行的Java Web框架,...总的来说,Struts2多文件上传并显示进度的实现需要结合前端和后端的技术,通过AJAX和XMLHttpRequest的`onprogress`事件来动态更新进度条,同时确保后端处理的高效和安全性。

    Struts2多个文件上传

    在Struts2中,文件上传功能是一个常用特性,尤其在处理用户提交的多个文件时。本文将详细讲解如何使用Struts2进行多个文件的上传,重点是使用List集合进行上传。 首先,要实现Struts2的文件上传,必须引入必要的...

    Struts2多文件上传下载实例

    在实际项目中,文件上传和下载功能是必不可少的,本实例将详细讲解如何在Struts2框架下实现单个文件及多个文件的上传与下载。 首先,我们需要在Struts2的配置文件(struts.xml)中添加相关的Action配置,以便处理文件...

    struts2多文件上传和下载

    在Struts2中,文件上传和下载是常见的功能,对于用户交互和数据交换至关重要。这篇内容将深入讲解如何在Struts2中实现多文件的上传和下载。 1. **文件上传** 文件上传在Web应用中常常用于让用户提交各种类型的文件...

    struts2实现多文件上传下载

    文件上传比较多,多文件上传少一点 文件下载很少的,看似简单,实则不然 网上的Struts2进行的文件下载一般都是单文件或者固定的文件,并没有(很少)实现随意文件的下载的例子 提供多文件上传,上传成功后,提供...

    Ext+Struts2多文件上传

    通过以上步骤,我们可以利用ExtJS的用户界面和Struts2的后台处理能力,实现一个完整的多文件上传功能。这个功能不仅提高了用户体验,还简化了开发流程。在实际项目中,还可以进一步优化,例如添加进度条显示、预览...

    struts2实现多文件上传功能

    Struts2提供了完善的文件上传支持,让我们来详细探讨如何在Struts2中实现多文件上传。 首先,我们需要在Struts2的配置文件(struts.xml)中启用文件上传的支持。这通常涉及到添加`&lt;constant&gt;`标签来设置`struts....

    AjaxFileUpload Struts2 多文件上传

    本篇文章将深入讲解如何利用AjaxFileUpload与Struts2实现多文件上传,并结合jQuery进行前端交互。 首先,我们需要在项目中引入必要的库。Struts2提供了struts2-jquery-plugin,这是一个基于jQuery的插件,包含了...

Global site tag (gtag.js) - Google Analytics