`
xiangxingchina
  • 浏览: 520309 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

struts2多文件上传--使用数组方式

阅读更多

一、上传页面:

<%@ page language="java" contentType="text/html; charset=GBK"%>
<%@taglib prefix="s" uri="/struts-tags"%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=GBK" />
  <title>使用数组上传多个文件</title>
</head>
<body>
<s:fielderror/>
<form action="upload.action" method="post" enctype="multipart/form-data">
  文件标题:<input type="text" name="title" /><br>
  选择第一个文件:<input type="file" name="upload" /><br>
  选择第二个文件:<input type="file" name="upload" /><br>
  选择第三个文件:<input type="file" name="upload" /><br>
<input value="上传" type="submit" />
</form>
</body>
</html>



二、上传成功页面:

<%@ page language="java" contentType="text/html; charset=GBK"%>
<%@taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>上传成功</title>
</head>
<body>
上传成功!<br>
  文件标题:<s:property value=" + title"/><br>
  第一个文件为:<img src="<s:property value="'upload/' + uploadFileName[0]"/>"/><br>
  第二个文件为:<img src="<s:property value="'upload/' + uploadFileName[1]"/>"/><br>
  第三个文件为:<img src="<s:property value="'upload/' + uploadFileName[2]"/>"/><br>

</body>
</html>



三、动作类

package lee;
import com.opensymphony.xwork2.Action;
import org.apache.struts2.ServletActionContext;
import java.io.File;
import java.io.*;
import com.opensymphony.xwork2.ActionSupport;
/**
 * @author  yeeku.H.lee kongyeeku@163.com
 * @version  1.0
 * Copyright (C), 2005-2008, yeeku.H.Lee
 * This program is protected by copyright laws.
 * Program Name:
 * Date: 
 */
public class UploadAction extends ActionSupport
{
	private String title;
    private File[] upload;
    private String[] uploadContentType;
    private String[] uploadFileName;
	//接受依赖注入的属性
    private String savePath;
	//接受依赖注入的方法
    public void setSavePath(String value)
	{
        this.savePath = value;
    }
    private String getSavePath() throws Exception 
	{
        return ServletActionContext.getRequest().getRealPath(savePath);
    }
	
	public void setTitle(String title) {
		this.title = title; 
	}
	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 getTitle() {
		return (this.title); 
	}
	public File[] getUpload() {
		return (this.upload); 
	}
	public String[] getUploadContentType() {
		return (this.uploadContentType); 
	}
	public String[] getUploadFileName() {
		return (this.uploadFileName); 
	}


	@Override
    public String execute() throws Exception
	{
		File[] files = getUpload();
		for (int i = 0 ; i < files.length ; i++)
		{
			//以服务器的文件保存地址和原文件名建立上传文件输出流
			FileOutputStream fos = new FileOutputStream(getSavePath() + "\\" + getUploadFileName()[i]);
			FileInputStream fis = new FileInputStream(files[i]);
			byte[] buffer = new byte[1024];
			int len = 0;
			while ((len = fis.read(buffer)) > 0)
			{
				fos.write(buffer , 0 , len);
			}
		}
         fos.close();// 注意:流应当关闭。


         fis.close();
        return SUCCESS;
    }
}

四、struts.xml文件

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>

<constant name="struts.custom.i18n.resources" value="globalMessages"/>
<constant name="struts.i18n.encoding" value="GBK"/>

<package name="upload" extends="struts-default">

<action name="upload" class="lee.UploadAction">
  <interceptor-ref name="fileUpload">
    <param name="allowedTypes">image/bmp,image/png,image/gif,image/jpeg,image/pjpeg</param>
  </interceptor-ref>
  <interceptor-ref name="defaultStack"/>
  <param name="savePath">/upload</param>
  <result name="input">/upload.jsp</result>
  <result>/succ.jsp</result>
</action>

</package>
</struts>

分享到:
评论

相关推荐

    Struts2多个文件上传

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

    swfuplaod+struts2实现多文件上传

    下面将详细介绍如何利用SWFUpload与Struts2来实现多文件上传。 **一、SWFUpload组件介绍** SWFUpload 是一个JavaScript库,它利用Flash技术提供了一个高级的文件上传体验。它的主要特性包括: 1. **多文件选择**...

    基于struts2的用数组接受多个文件上传+过滤器

    在本教程中,我们将探讨如何利用Struts2框架,结合数组来实现多文件上传,并利用过滤器进行预处理,确保上传的安全性。 首先,让我们了解一下多文件上传的基本概念。在传统的HTTP请求中,每个请求只能携带一个文件...

    一个Struts1多文件上传实例(附Form中传List示例)

    在Struts1中,多文件上传通常使用Apache的Commons FileUpload库来处理。该库提供了一种处理multipart/form-data类型请求的方式,这种类型的请求通常用于文件上传。要实现多文件上传,需要在HTML表单中使用`...

    struts2文件上传的两种方法

    Struts2提供了两种主要的文件上传方式:单文件上传和多文件上传。下面将详细介绍这两种方法及其相关知识点。 一、单文件上传 1. **配置Struts2核心过滤器**:首先,需要在web.xml中配置`struts2-convention-plugin...

    struts2-多文件上传2

    "struts2-多文件上传2"这个项目显然是关于如何在Struts2中实现多文件上传功能的一个实例,特别是通过使用数组的方式来处理多个文件。 在Struts2中,多文件上传的核心在于使用`&lt;s:file&gt;`标签,它可以嵌套在表单中,...

    struts2多文件上传

    在Struts2中实现多文件上传是一项常见的功能,尤其在处理用户需要一次性提交多个文件的场景下。本篇文章将详细探讨如何在Struts2中实现多文件上传,并介绍相关的知识点。 首先,我们需要了解Struts2的文件上传机制...

    struts多文件上传

    在Struts1.2版本中,实现多文件上传是一项常见的需求,它允许用户在一次提交中上传多个文件,这对于数据交互、资源分享等场景非常实用。在本教程中,我们将深入探讨如何在Struts1.2中实现这一功能。 首先,理解多...

    AjaxFileUpload Struts2 多文件上传

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

    struts2 文件上传,也可以多文件上传

    Struts2使用Apache的Commons FileUpload库来处理文件上传。这个库将HTTP请求中的multipart/form-data解析为一个个单独的文件和字段,使得我们可以方便地访问上传的文件。 **单文件上传** 1. **Action配置**:在...

    Struts1.2 多文件上传下载

    在"Struts1.2 多文件上传下载"这个主题中,我们将深入探讨如何使用Struts1.2实现多个文件的上传和下载功能。 首先,文件上传功能在Web应用中很常见,例如用户可能需要上传个人照片、文档或其他媒体文件。在Struts...

    struts2文件上传,一直报类型不允许的问题

    Struts2 文件上传时遇到“类型不允许的问题”通常与文件扩展名验证有关,这涉及到Struts2框架的安全配置。在Struts2中,为了防止恶意用户上传不安全的文件(如脚本或可执行文件),系统会设定允许上传的文件类型。当...

    struts1 文件上传 文件下载

    下面将详细介绍如何使用Struts1实现文件上传和下载,以及涉及到的关键知识点。 **一、文件上传** 1. **表单配置**:在HTML表单中,我们需要使用`&lt;input type="file"&gt;`标签让用户选择要上传的文件。同时,表单需要...

    struts2中单文件,多文件上传

    在Struts2中,文件上传是常见的需求,无论是单个文件还是多个文件的上传,都可以通过Struts2提供的插件和配置轻松实现。以下将详细介绍如何使用Struts2来实现单文件和多文件上传。 首先,我们需要在Struts2的配置...

    struts2文件上传教程

    对于多文件上传的场景,你需要将Action类中的文件属性改为数组或List类型,并在JSP页面中使用相同的name属性创建多个文件输入字段。在Action的execute方法中,遍历数组或List并分别处理每个文件。 ```java private ...

    swfupload+struts2多文件上传的例子

    本教程将详细讲解如何利用SWFUpload与Struts2框架来实现多文件上传的示例。 首先,让我们了解SWFUpload。SWFUpload是一款开源的Flash上传组件,它允许用户在不离开当前页面的情况下上传多个文件。通过在浏览器上...

    Struts2单文件与多文件上传

    在Struts2中,文件上传是常见的功能,尤其对于处理用户提交的各种形式的数据,如图像、文档等,是Web开发中的重要一环。本教程将深入讲解Struts2中的单文件和多文件上传机制,帮助Web开发初学者更好地理解和运用。 ...

    struts2实现上传

    对于多文件上传,Struts2提供了`org.apache.struts2.components.File`组件,可以接受一个文件数组。在Action类中,你需要创建一个`File`数组和相应的字符串数组: ```java private File[] files; private String[] ...

    Struts2批量上传

    Struts2框架提供了强大的文件上传支持,使得开发者能够轻松实现批量文件上传功能。本文将深入解析Struts2批量上传机制,包括其工作原理、代码实现细节以及如何在JSP页面和Action层进行集成。 #### 二、Struts2批量...

    flex struts2文件上传

    Flex Struts2文件上传是一个常见的Web开发任务,它涉及到客户端与服务器端的数据交互,特别是涉及用户界面和后端服务之间的文件传输。Flex是Adobe开发的一个富互联网应用(RIA)框架,用于创建动态、交互式的用户...

Global site tag (gtag.js) - Google Analytics