建立ActionForm
package com.cnehu.struts.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionError;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.upload.FormFile;
import org.apache.struts.upload.MultipartRequestHandler;
/**
*
* Title:UpLoadForm
*
*
* Copyright: Copyright (c) 2005 techyang ;
http://blog.csdn.net/techyang *
* @author techyang
* @version 1.0
*/
public class UpLoadForm extends ActionForm
{
public static final String ERROR_PROPERTY_MAX_LENGTH_EXCEEDED = "org.apache.struts.webapp.upload.MaxLengthExceeded";
protected FormFile theFile;
protected FormFile theFile2;
public FormFile getTheFile()
{
return theFile;
}
public void setTheFile(FormFile theFile)
{
this.theFile = theFile;
}
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request)
{
ActionErrors errors = null;
//has the maximum length been exceeded?
Boolean maxLengthExceeded = (Boolean) request
.getAttribute(MultipartRequestHandler.ATTRIBUTE_MAX_LENGTH_EXCEEDED);
if ((maxLengthExceeded != null) && (maxLengthExceeded.booleanValue()))
{
errors = new ActionErrors();
errors.add(ERROR_PROPERTY_MAX_LENGTH_EXCEEDED, new ActionError(
"maxLengthExceeded"));
}
return errors;
}
/**
* @return Returns the theFile2.
*/
public FormFile getTheFile2()
{
return theFile2;
}
/**
* @param theFile2 The theFile2 to set.
*/
public void setTheFile2(FormFile theFile2)
{
this.theFile2 = theFile2;
}
}
二。建立ActionServlet
package com.cnehu.struts.action;
import java.io.*;
import javax.servlet.http.*;
import org.apache.struts.action.*;
import org.apache.struts.upload.FormFile;
import com.cnehu.struts.form.UpLoadForm;
/**
*
* Title:UpLoadAction
*
*
* Copyright: Copyright (c) 2005 techyang ;
http://blog.csdn.net/techyang *
* @author techyang
* @version 1.0
*/
public class UpLoadAction extends Action
{
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception
{
String encoding = request.getCharacterEncoding();
if ((encoding != null) && (encoding.equalsIgnoreCase("utf-8")))
{
response.setContentType("text/html; charset=gb2312");//如果没有指定编码,编码格式为gb2312
}
UpLoadForm theForm = (UpLoadForm) form;
FormFile file = theForm.getTheFile();//取得上传的文件
FormFile file2=theForm.getTheFile2();
try
{
/*
* 取当前系统路径D:Tomcat5webappscoka 其中coka 为当前context
*/
String filePath = this.getServlet().getServletContext()
.getRealPath("/");
InputStream stream = file.getInputStream();//把文件读入
ByteArrayOutputStream baos = new ByteArrayOutputStream();
/*
* 建立一个上传文件的输出流 如果是linux系统请把UploadFiles后的"\"换成"/"
*/
OutputStream bos = new FileOutputStream(filePath +
"UploadFiles\"+file.getFileName());
//D:Tomcat5webappscokaUploadFilesDSC01508.JPG
/* System.out.println(filePath +
"UploadFiles\"+file.getFileName());
System.out.println(filePath);*/
request.setAttribute("fileName",filePath + "/"
+ file.getFileName());
int bytesRead = 0;
byte[] buffer = new byte[8192];
while ((bytesRead = stream.read(buffer, 0, 8192)) != -1)
{
bos.write(buffer, 0, bytesRead);//将文件写入服务器
}
bos.close();
stream.close();
InputStream stream2 = file2.getInputStream();//把文件读入
ByteArrayOutputStream baos2 = new ByteArrayOutputStream();
OutputStream bos2 = new FileOutputStream(filePath +
"UploadFiles\"+file2.getFileName());//建立一个上传文件的输出流
int bytesRead2 = 0;
byte[] buffer2 = new byte[8192];
int i=0;
while ((bytesRead2 = stream2.read(buffer2, 0, 8192)) != -1)
{
bos2.write(buffer2, 0, bytesRead2);//将文件写入服务器
}
bos2.close();
stream2.close();
} catch (Exception e)
{
System.err.print(e);
}
return mapping.findForward("display");
}
}
三。建立上传用的JSP文件 upload.jsp
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<html:html>
<head>
<title>用Struts上传文件</title>
</head>
<body>
<html:form action="/uploadsAction" enctype="multipart/form-data">
<html:file property="theFile"/>
<html:file property="theFile2"/>
<html:submit/>
</html:form>
</body>
</html:html>
四。配置struts-config.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
<struts-config>
<data-sources />
<form-beans >
<form-bean name="uploadsForm" type="com.cnehu.struts.form.UpLoadForm" />
</form-beans>
<global-exceptions />
<global-forwards >
</global-forwards>
<action-mappings >
<action name="uploadsForm" type="com.cnehu.struts.action.UpLoadAction" path="/uploadsAction">
<forward name="display" path="/display.jsp" />
</action>
</action-mappings>
</struts-config>
分享到:
相关推荐
总的来说,Struts2的多文件上传通过引入Apache Commons库,提供了简洁的API和配置,使得开发者能轻松处理用户上传的多个文件。无论是使用List集合还是数组,核心原理都是相同的,只是接收上传文件的对象类型不同。...
本文将详细解析如何使用Struts框架实现多文件上传的功能,并对相关的代码进行深入分析。 #### 一、Struts框架简介 Struts是一款开源的Java MVC(Model-View-Controller)框架,它简化了Web应用程序的开发过程,...
这篇博客文章提供的"struts2文件上传下载源代码"旨在帮助开发者理解和实现这些功能。 文件上传功能允许用户从他们的设备上传文件到服务器。在Struts2中,这通常通过表单实现,表单包含一个`<input type="file">`...
通过分析和学习这些代码,你可以更好地理解和掌握Struts1中多文件上传和表单中传递List的实践方法。 总之,这个实例提供了关于Struts1中文件上传和复杂表单数据处理的实战经验,对于学习Java Web开发和Struts1框架...
本篇文章将深入讲解如何在Struts框架中实现多文件上传。 首先,了解Struts2文件上传的基本原理。Struts2使用了Apache的Commons FileUpload库来处理文件上传。在Struts2的Action类中,我们通常会有一个或多个`File`...
在这个“struts2上传文件源代码”中,我们将深入探讨Struts2如何实现文件上传功能,以及涉及到的相关知识点。 首先,文件上传是Web应用中常见的功能,它允许用户从本地计算机选择文件并将其发送到服务器。在Struts2...
在Struts1中处理多文件上传,通常需要以下步骤: 1. **前端准备**:首先,你需要在HTML表单中使用`<input type="file" multiple>`来允许用户选择多个文件。jQuery插件可以增强这个功能,如提供文件预览、进度条显示...
在处理文件上传时,Struts2提供了便捷的API和配置方式,使得开发人员能够轻松实现多文件上传的功能。下面将详细阐述如何使用Struts2来实现多个文件的上传。 首先,理解文件上传的基本原理。在HTTP协议中,文件上传...
在本"基于Struts的文件上传下载源代码"中,我们可以深入理解Struts如何处理文件上传和下载操作,这对于初学者来说是一个非常实用的学习资源。 首先,文件上传在Web应用中是常见的功能,它允许用户从本地计算机选择...
同时,为了支持多文件上传,可以使用`<s:file>`标签的multiple属性: ```xml <result name="success">/success.jsp <result name="input">/upload.jsp ``` 这里,`fileUploadStack`拦截器栈包含了处理文件...
这篇内容将深入探讨Struts1中的单个文件上传和多个文件上传的实现机制。 首先,我们来看单个文件上传。在Struts1中,要实现文件上传,你需要在表单中包含一个`<input type="file">`标签,并在ActionForm中创建对应...
需求 1.能够对多个文件进行上传(可以选择上传文件个数,也即上传文件个数不定) 2.能够对上传路径进行配置文件指定(upload.properties),使用...多文件 上传 下载 随意文件 java Struts2 单例 配置 动态读取 李顺利
首先,我们需要在Struts2的配置文件(struts.xml)中配置一个Action,该Action将处理文件上传请求。在Action配置中,我们需要指定一个result类型为"dispatcher"的result,并添加`<param name="allowedTypes">`来限制...
在标题和描述中提到的"用Struts上传多个文件的方法",主要是指在Struts框架下处理用户通过表单提交的多个文件。下面我们将详细介绍如何实现这个功能。 1. **创建ActionForm** ActionForm是Struts框架中处理请求...
在Java Web开发中,...总的来说,实现Struts1.x中的多文件上传涉及HTML表单的配置、Struts1.x的Action配置、Action类的编写以及Apache Commons库的使用。理解这些步骤可以帮助开发者有效地处理用户上传的多个文件。
多文件上传功能允许用户一次性上传多个文件,这对于比如图片库、文档分享等应用场景非常有用。下面将详细介绍如何在Struts1.x中实现多文件上传。 首先,我们需要在ActionForm类中创建一个File类型的数组,每个File...
Struts2是一个非常流行的Java Web框架,用于...总的来说,Goouploader插件为Struts2提供了强大且易用的多文件上传功能,大大简化了开发过程。通过上述步骤,你可以轻松地在自己的项目中集成并实现高效的文件上传功能。
在这个"struts实现文件上传和下载源代码"项目中,我们将会探讨如何使用Struts框架来实现在Web应用中进行文件的上传和下载功能,同时还会关注对于大文件(超过3MB)的处理策略。 1. **文件上传** 文件上传是Web应用...
本篇内容将详细介绍如何在Struts项目中实现多文件上传,并提供相应的代码示例。 #### 1. 前提条件与依赖 为了能够成功地在Struts项目中实现多文件上传功能,首先需要确保以下前提条件得到满足: - **Java版本**:...
总结起来,使用Struts实现文件上传下载涉及前端表单设计、后端处理逻辑、文件存储策略以及安全控制等多个方面。在实践中,我们还需要考虑到性能优化和用户体验提升,例如使用异步上传、进度条展示等技术。