`
lk557
  • 浏览: 141955 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

struts2多文件上传

 
阅读更多

分三步进行:

第一步:在WEB-INF/lib下加入commons-fileupload-1.2.1.jar、commons-io-1.3.2.jar

第二步:把form表单的enctype设置为:“multipart/form-data”,如下:

<form action="${pageContext.request.contextPath }/ufActionuploadFile" method="post" enctype="multipart/form-data">
图片1:<input type="file" name="images" /><br />
图片2:<input type="file" name="images" /><br />
图片3:<input type="file" name="images" /><br />
图片4:<input type="file" name="images" /><br />
图片5:<input type="file" name="images" /><br />
<input type="submit" value="提交" />
</form>

第三步:在action中添加属性,action代码如下:

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

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

public class UploadFileAction {

private File images[];// 文件列表

private String imagesContentType[];// 文件类型列表

private String imagesFileName[];// 文件名称列表

private String message;

public File[] getImages() {
return images;
}

public void setImages(File[] images) {
this.images = images;
}

public String[] getImagesContentType() {
return imagesContentType;
}

public void setImagesContentType(String[] imagesContentType) {
this.imagesContentType = imagesContentType;
}

public String[] getImagesFileName() {
return imagesFileName;
}

public void setImagesFileName(String[] imagesFileName) {
this.imagesFileName = imagesFileName;
}

public String getMessage() {
return message;
}

public void setMessage(String message) {
this.message = message;
}

public String uploadFile() {
try {
if (this.images != null) {
String realpath = ServletActionContext.getServletContext()
.getRealPath("/images111");
for (int i = 0, j = this.images.length; i < j; i++) {
File image = images[i];
System.out.println(realpath);
if (image != null) {
File savefile = new File(realpath,
this.imagesFileName[i]);
if (!savefile.getParentFile().exists()) {
savefile.getParentFile().mkdirs();
}
FileUtils.copyFile(image, savefile);
}
}
}
message = "上传文件成功!";
} catch (IOException e) {
e.printStackTrace();
message = e.getMessage();
}
return "success";
}
}




分享到:
评论

相关推荐

    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