- 浏览: 138318 次
- 性别:
- 来自: 深圳
文章分类
最新评论
-
i523853827:
楼主你好,文章里面有错误,希望楼主能改正 验证的xml 是类名 ...
struts校验框架学习总结 -
renjy1123:
希望楼主分享下,我现在也要用,也不知如何着手,纠结!
OSB学习 -
fengweiyou:
说的非常好,如果不说还真不知道是哪里的问题呢。谢谢你
struts2.1.8+spring2.5.6+hibernate3.2框架搭建错误 -
2001430:
...
There is no Action mapped for action name XX.的解决 -
chilongxph:
楼上正解,此种方式的问题正在与此,如果过多的话,就只能去使用存 ...
oracle 列转行
一。建立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;
/**
* <p>
* Title:UpLoadForm
* </p>
* <p>
* Copyright:
* </p>
* @author zhhlk
* @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;
/**
* <p>
* Title:UpLoadAction
* </p>
* <p>
* Copyright: Copyright (c) 2005
* </p>
* @author zhhlk
* @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:\Tomcat5\webapps\coka\ 其中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:\Tomcat5\webapps\coka\UploadFiles\DSC01508.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>
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;
/**
* <p>
* Title:UpLoadForm
* </p>
* <p>
* Copyright:
* </p>
* @author zhhlk
* @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;
/**
* <p>
* Title:UpLoadAction
* </p>
* <p>
* Copyright: Copyright (c) 2005
* </p>
* @author zhhlk
* @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:\Tomcat5\webapps\coka\ 其中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:\Tomcat5\webapps\coka\UploadFiles\DSC01508.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>
发表评论
-
OSB学习
2009-12-04 17:33 2224新的项目要用到osb,老大吩咐研究一下,遍寻网络,只有英文文档 ... -
struts校验框架学习总结
2009-11-27 15:41 2519一. 手动输入完成校验 1.普通的处理方式:只需要在actio ... -
struts2.1.8+spring2.5.6+hibernate3.2框架搭建错误
2009-11-20 16:01 48731.java.lang.RuntimeException: j ... -
cxf拦截器学习
2009-11-10 07:59 3251CXF拦截器(Interceptor)的使用 ... -
Apache CXF2+Spring2.5轻松实现WebService
2009-11-05 16:13 2095文章来源:http://tonyaction.blog.51c ... -
使用eclipse3.4建struts1.X工程
2009-08-14 16:17 1301用惯了myeclipse,突然转到了eclipse上一时 ... -
c3p0链接多个数据库
2009-05-13 16:07 2105我现在有一个需求,就是在一个系统内,同时要使用多个数 ... -
There is no Action mapped for action name XX.的解决
2009-03-23 10:19 6082There is no Action mapped for a ... -
arcgis9.1 sql2005安装
2009-03-17 14:18 12141.安装sql server 2005服务器,由于安装的是服务 ... -
ibatis自动生成插件
2009-02-20 09:05 1788对于IBatis应用最烦人的重复工作就是不停的写DAO,DTO ... -
spring事务属性详解
2009-02-10 16:45 888Spring声明式事务让我们 ... -
struts分页练习
2008-10-08 18:33 1492一个菜鸟,找了一个多月的工作,进了公司,看了半个月的书,突然决 ... -
struts连接数据源问题
2008-09-28 18:45 1133连接struts数据源,出现问题,原因可能有以下几种情况 ... -
动态form及动态action的配置
2008-09-24 23:10 1970一,动态form配置示例(动态form灵活,但是不支持EL表达 ... -
myEeclipse快捷键注解
2008-09-21 11:10 1282(来自Eclipse社区论坛) 编辑 作用域 功能 快捷 ... -
Hibernate 中的attachDirty,attachClean,merge之间的区别
2008-09-20 20:26 28991.attachDirty:将传入的对象持久化并保存.如果对象 ... -
国际化资源方法
2008-09-19 19:36 7911.先建立中文资源文件内容: app_temp.prope ...
相关推荐
在这个例子中,`name="files"`的`input`元素允许用户选择多个文件,`multiple`属性表示可以同时上传多个文件。 在Struts2的动作类(Action)中,你需要创建一个List类型的属性来接收这些文件。例如: ```java ...
要实现多个文件的同时上传,我们需要利用一些额外的工具或库来扩展Struts1的功能。 在描述中提到的"jquery multi"可能是指jQuery的某个插件,用于实现前端的多文件选择和预览,例如`jQuery Multi File Uploader`或`...
- **`struts-config.xml`**: 需要在配置文件中定义上传Action及其映射关系。 - **`web.xml`**: 在`web.xml`中配置MultipartRequestHandler过滤器,以便处理多部分请求。 ##### 3.2 设计ActionForm 为了封装上传...
在提供的"testFormList"文件中,可能包含了实现上述功能的示例代码,包括ActionForm类、Action类、配置文件以及相关的JSP页面。通过分析和学习这些代码,你可以更好地理解和掌握Struts1中多文件上传和表单中传递List...
在实际应用中,有时我们需要同时上传多个文件,这在Struts中是可以实现的。本篇文章将深入讲解如何在Struts框架中实现多文件上传。 首先,了解Struts2文件上传的基本原理。Struts2使用了Apache的Commons FileUpload...
下面将详细阐述如何使用Struts2来实现多个文件的上传。 首先,理解文件上传的基本原理。在HTTP协议中,文件上传通常通过multipart/form-data编码类型来实现。这种编码方式将表单数据分割成多个部分,每部分包含一个...
通过以上步骤,你就可以在Struts1项目中实现单个和多个文件的上传功能。然而,需要注意的是,Struts1已经相对老旧,安全性方面存在一些问题。在现代项目中,开发者更倾向于使用更新的框架,如Spring MVC或Struts2,...
在Struts1.2版本中,实现多文件上传是一项常见的需求,它允许用户在一次提交中上传多个文件,这对于数据交互、资源分享等场景非常实用。在本教程中,我们将深入探讨如何在Struts1.2中实现这一功能。 首先,理解多...
本项目主要展示了如何在Struts2框架下实现单个文件和多个文件的上传及下载,并且运用了多个拦截器来增强功能和安全性。 首先,让我们详细了解一下文件上传的过程。在Struts2中,文件上传主要依赖于`struts2-...
在Struts1.x中,实现文件上传功能是一个常见的需求,特别是在处理用户提交的表单时需要包含多个文件。下面我们将详细介绍如何使用Struts1.x来实现多个文件的上传。 首先,我们需要在HTML表单中添加`...
1.能够对多个文件进行上传(可以选择上传文件个数,也即上传文件个数不定) 2.能够对上传路径进行配置文件指定(upload.properties),使用了一些类似单例模式的静态代码块 3.Struts2进行下载处理,能对上传的所有...
在`struts.xml`配置文件中,为需要支持文件上传的Action添加`params`和`fileUpload`拦截器,并设置允许的最大上传大小。例如: ```xml <package name="default" namespace="/" extends="struts-default"> ...
在Action类中,我们需要定义一个或多个`java.io.File`或`org.apache.struts2.dispatcher.multipart.FileItem`类型的属性,这些属性会被用来存储上传的文件。 对于单文件上传,我们需要在表单中添加一个`...
通过组合使用Struts2的配置、Action类和HTML表单,我们可以轻松地处理多个文件的上传操作。这个过程中的关键知识点包括:Struts2拦截器、文件上传配置、Action类设计、HTML表单的构建以及服务器端的文件处理逻辑。
3. **并行上传**:允许同时上传多个文件,提高上传速度。 4. **分片上传**:对于大文件,可以采用分片上传,降低网络中断的影响。 通过上述步骤和注意事项,你可以利用SWFUpload和Struts2构建一个功能强大且安全的...
总的来说,Struts1.x的多文件上传功能通过合理的表单设计、框架配置和后端处理,可以方便地实现用户在Web应用中上传多个文件。然而,随着技术的发展,现在的Web应用更多地转向了Spring MVC等更现代的框架,它们提供...
为了使 Struts 2 能够正确处理文件上传,还需要在 `struts.xml` 配置文件中添加 `fileUpload` 拦截器到 Action 的配置中。例如: ```xml <package name="default" namespace="/" extends="struts-default"> <!...
Struts 是一个基于MVC(Model-View-Controller)...总结,Struts 实现文件上传涉及到配置、表单设计、Action处理和安全控制等多个环节。理解并熟练掌握这些知识点,能帮助开发者在实际项目中高效地处理文件上传需求。
4. **Commons FileUpload配置**:在Struts2配置文件中,我们需要配置Struts2与Apache Commons FileUpload的集成。这包括设置临时目录、最大文件大小等参数。 5. **文件处理**:在Action的execute()方法或其他业务...
接下来,我们将讨论如何在 Struts2 中上传多个文件。为了上传任意数量的文件,我们需要在表单中使用数组或集合类型的字段。例如,将 `<input type='file' name='upload' />` 更改为 `...