struts的上传封装的已经非常完美了,首先我们来看一下页面
<s:form action="saveDocument.action" method="post" enctype ="multipart/form-data">
<td height="32" class="heder">
上传档案 :
</td>
<td align="left" bgcolor="#FFFFFF" class="main2">
<s:file name="documentFile" />
</td>
<td align="center">
<input type="submit" value="保 存" class="button" onclick="return nextsubmit();"/>
</td>
</s:form>
主要关注的就是 <s:file name="documentFile" /> enctype ="multipart/form-data"
在action中,我们来看
private String documentFileContentType;
private String documentFileFileName;
private File documentFile;
public String getDocumentFileContentType() ...{
return documentFileContentType;
}
public void setDocumentFileContentType(String documentFileContentType) ...{
this.documentFileContentType = documentFileContentType;
}
public String getDocumentFileFileName() ...{
return documentFileFileName;
}
public void setDocumentFileFileName(String documentFileFileName) ...{
this.documentFileFileName = documentFileFileName;
}
public File getDocumentFile() ...{
return documentFile;
}
public void setDocumentFile(File documentFile) ...{
this.documentFile = documentFile;
}
private void copy(File src, File dst) ...{
InputStream in = null;
OutputStream out = null;
try...{
in = new BufferedInputStream( new FileInputStream(src));
out = new BufferedOutputStream( new FileOutputStream(dst));
byte [] buffer = new byte [1024];
while (in.read(buffer) > 0 )
out.write(buffer);
in.close();
out.close();
}catch (Exception e) ...{
e.printStackTrace();
}
}
public String save()...{
if(!documentFileFileName.equals(""))...{
String folder = ServletActionContext.getServletContext()
.getRealPath("/archives");
File rootDir = new File(folder);
if(!rootDir.exists())
rootDir.mkdirs();
String fileEx = documentFileFileName.substring(
documentFileFileName.indexOf("."),
documentFileFileName.length());
String fileRealName = documentFileFileName.substring(0, documentFileFileName.indexOf(".")) + String.valueOf(new Date().getTime())+fileEx;
String fileName = folder + "\" + fileRealName;
copy(documentFile,new File(fileName));
}
return "success";
}
documentFileContentType; documentFileFileName; documentFile; 上传后这三个东西会自动注入进来,根据要求对文件名更改下,保存下
好了,接着我们要提供下载,看看struts是怎么做的,网上关于这方面资料很少,就一个家伙把官方的showcase翻译下,我再完整的走一遍流程
在页面中
<s:url id="url" action="download"> <s:param name="inputPath">/archives/<s:property value="loc" /></s:param>
</s:url>
<s:a href="%{url}">下载</s:a>
在action中
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.Action;
import com.opensymphony.xwork2.ActionContext;
public class FileDownloadAction implements Action ...{
private String inputPath;
public void setInputPath(String value) throws UnsupportedEncodingException ...{
inputPath = new String(value.getBytes("ISO-8859-1"),"UTF-8");
System.out.println();
}
public InputStream getInputStream() throws Exception ...{
return ServletActionContext.getServletContext().getResourceAsStream(inputPath);
}
public String execute() throws Exception ...{
String fileName = inputPath.substring(inputPath.lastIndexOf("/")+1, inputPath.length());
ServletActionContext.getResponse().setHeader("Content-Disposition", "attachment; filename="+new String(fileName.getBytes("gb2312"),"iso-8859-1"));
return SUCCESS;
}
}
相应的XML配置
<action name="download" class="FileDownloadAction">
<result name="success" type="stream">
<param name="inputName">inputStream</param>
<param name="bufferSize">4096</param>
</result>
</action>
这里要注意,在action中 inputPath = new String(value.getBytes("ISO-8859-1"),"UTF-8"); 需要转换下
另外在setHeader("Content-Disposition", "attachment; filename="+new String(fileName.getBytes("gb2312"),"iso-8859-1"));
这一步也是非常重要的。
注意:第一个转换,"ISO-8859-1"————"UTF-8" UTF-8是根据你自己的编码来处理
第二个转换,"gb2312"————"iso-8859-1" 你就不要改变了,不管你是什么编码,都这么处理就是了,只要你的客户用的是中文的操作系统,呵呵
大家在官方例子showcase里看到的是这样的
<action name="download" class="org.apache.struts2.showcase.filedownload.FileDownloadAction">
<param name="inputPath">/images/struts.gif</param>
<result name="success" type="stream">
<param name="contentType">image/gif</param>
<param name="inputName">inputStream</param>
<param name="contentDisposition">filename="struts.gif"</param>
<param name="bufferSize">4096</param>
</result>
</action>
可以看到 inputPath 我们已经写在了jsp的URL中了,contentType 这个东西也是大家比较恼火的,因为对于图片、zip、rar、doc、word、txt都是不同的,我这里做了个实验,干脆不要了,让系统自己去判断,发现可行,呵呵,可能struts会自动判断,contentDisposition 我们也写在action的response中了,剩下的2个inputname和bufferSize就让它放着吧,反正不用改变,好了,经过上述的改变,终于符合业务需求了,呵呵
<s:form action="saveDocument.action" method="post" enctype ="multipart/form-data">
<td height="32" class="heder">
上传档案 :
</td>
<td align="left" bgcolor="#FFFFFF" class="main2">
<s:file name="documentFile" />
</td>
<td align="center">
<input type="submit" value="保 存" class="button" onclick="return nextsubmit();"/>
</td>
</s:form>
主要关注的就是 <s:file name="documentFile" /> enctype ="multipart/form-data"
在action中,我们来看
private String documentFileContentType;
private String documentFileFileName;
private File documentFile;
public String getDocumentFileContentType() ...{
return documentFileContentType;
}
public void setDocumentFileContentType(String documentFileContentType) ...{
this.documentFileContentType = documentFileContentType;
}
public String getDocumentFileFileName() ...{
return documentFileFileName;
}
public void setDocumentFileFileName(String documentFileFileName) ...{
this.documentFileFileName = documentFileFileName;
}
public File getDocumentFile() ...{
return documentFile;
}
public void setDocumentFile(File documentFile) ...{
this.documentFile = documentFile;
}
private void copy(File src, File dst) ...{
InputStream in = null;
OutputStream out = null;
try...{
in = new BufferedInputStream( new FileInputStream(src));
out = new BufferedOutputStream( new FileOutputStream(dst));
byte [] buffer = new byte [1024];
while (in.read(buffer) > 0 )
out.write(buffer);
in.close();
out.close();
}catch (Exception e) ...{
e.printStackTrace();
}
}
public String save()...{
if(!documentFileFileName.equals(""))...{
String folder = ServletActionContext.getServletContext()
.getRealPath("/archives");
File rootDir = new File(folder);
if(!rootDir.exists())
rootDir.mkdirs();
String fileEx = documentFileFileName.substring(
documentFileFileName.indexOf("."),
documentFileFileName.length());
String fileRealName = documentFileFileName.substring(0, documentFileFileName.indexOf(".")) + String.valueOf(new Date().getTime())+fileEx;
String fileName = folder + "\" + fileRealName;
copy(documentFile,new File(fileName));
}
return "success";
}
documentFileContentType; documentFileFileName; documentFile; 上传后这三个东西会自动注入进来,根据要求对文件名更改下,保存下
好了,接着我们要提供下载,看看struts是怎么做的,网上关于这方面资料很少,就一个家伙把官方的showcase翻译下,我再完整的走一遍流程
在页面中
<s:url id="url" action="download"> <s:param name="inputPath">/archives/<s:property value="loc" /></s:param>
</s:url>
<s:a href="%{url}">下载</s:a>
在action中
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.Action;
import com.opensymphony.xwork2.ActionContext;
public class FileDownloadAction implements Action ...{
private String inputPath;
public void setInputPath(String value) throws UnsupportedEncodingException ...{
inputPath = new String(value.getBytes("ISO-8859-1"),"UTF-8");
System.out.println();
}
public InputStream getInputStream() throws Exception ...{
return ServletActionContext.getServletContext().getResourceAsStream(inputPath);
}
public String execute() throws Exception ...{
String fileName = inputPath.substring(inputPath.lastIndexOf("/")+1, inputPath.length());
ServletActionContext.getResponse().setHeader("Content-Disposition", "attachment; filename="+new String(fileName.getBytes("gb2312"),"iso-8859-1"));
return SUCCESS;
}
}
相应的XML配置
<action name="download" class="FileDownloadAction">
<result name="success" type="stream">
<param name="inputName">inputStream</param>
<param name="bufferSize">4096</param>
</result>
</action>
这里要注意,在action中 inputPath = new String(value.getBytes("ISO-8859-1"),"UTF-8"); 需要转换下
另外在setHeader("Content-Disposition", "attachment; filename="+new String(fileName.getBytes("gb2312"),"iso-8859-1"));
这一步也是非常重要的。
注意:第一个转换,"ISO-8859-1"————"UTF-8" UTF-8是根据你自己的编码来处理
第二个转换,"gb2312"————"iso-8859-1" 你就不要改变了,不管你是什么编码,都这么处理就是了,只要你的客户用的是中文的操作系统,呵呵
大家在官方例子showcase里看到的是这样的
<action name="download" class="org.apache.struts2.showcase.filedownload.FileDownloadAction">
<param name="inputPath">/images/struts.gif</param>
<result name="success" type="stream">
<param name="contentType">image/gif</param>
<param name="inputName">inputStream</param>
<param name="contentDisposition">filename="struts.gif"</param>
<param name="bufferSize">4096</param>
</result>
</action>
可以看到 inputPath 我们已经写在了jsp的URL中了,contentType 这个东西也是大家比较恼火的,因为对于图片、zip、rar、doc、word、txt都是不同的,我这里做了个实验,干脆不要了,让系统自己去判断,发现可行,呵呵,可能struts会自动判断,contentDisposition 我们也写在action的response中了,剩下的2个inputname和bufferSize就让它放着吧,反正不用改变,好了,经过上述的改变,终于符合业务需求了,呵呵
发表评论
-
jquery动态调用struts中的action
2011-08-25 14:02 879------------------------------- ... -
Queue队列实例
2011-08-25 13:57 908import java.util.Queue; impor ... -
struts2.0实现多个文件上传的二种方法(通过数组和集合来实现)
2011-08-16 20:35 806一:所要的包 commons-fileupload-1.2. ... -
struts2.0多文件上传(我自己用,好用,中文也可以上传)
2011-08-16 20:33 850这个页面是点一个添加就出一个浏览上传的 <%@ pag ... -
jquery数据列表(需要json.jar)
2011-08-15 23:17 1232public Map getDsrPwdList(String ... -
copy文件
2011-08-15 22:23 718import java.io.BufferedInputStr ...
相关推荐
Struts2.0是Java Web开发中的一个...以上是对Struts2.0中文件上传与下载功能的全面解析,包括核心概念、实现步骤、Ajax集成以及JSP页面的配合使用。在实际开发中,这些知识点可以帮助你构建高效、安全的文件管理功能。
以下是对Struts2.0文件上传原理的详细解释: 1. **HTTP协议与表单提交** 在HTML表单中,如果需要上传文件,`<form>`标签必须包含`enctype="multipart/form-data"`属性。这是因为普通POST请求无法处理二进制数据,...
本教程将深入探讨Struts2.0如何实现文件的上传与下载,并通过具体的实例进行解析。 ### 文件上传 在Struts2中,文件上传主要依赖于`Commons FileUpload`库。以下是一些关键知识点: 1. **表单设计**:首先,我们...
下面我们将深入探讨如何在Struts2.0中实现文件上传和下载。 ### 文件上传 1. **依赖库**:首先,你需要在项目中引入Apache Commons FileUpload和Commons IO库。这两个库提供了处理文件上传的基本工具和功能。 2. ...
文件上传是Web应用中的常见需求,Struts2.0提供了完善的文件上传解决方案。它利用MultipartResolver接口处理多部分请求,支持单文件和多文件上传。开发者只需简单配置,即可轻松实现文件上传功能。 十、Struts2.0中...
在Struts2.0框架中实现文件上传进度是一项常见的需求,尤其在用户上传大文件时,实时显示上传进度可以提供更好的用户体验。本文将详细介绍如何利用Struts2.0的监听器来实现这一功能。 首先,我们需要理解文件上传的...
- `commons-fileupload.jar`和`commons-io.jar`:Apache Commons项目提供的文件上传和IO操作支持。 - `commons-logging.jar`:日志抽象层,允许选择不同的日志实现。 - `servlet-api.jar`和`jsp-api.jar`:...
在Struts2和Spring的集成环境中,通常会创建一个专门处理文件上传的Action类,使用Apache的Commons FileUpload库解析请求中的多部分数据,然后将文件保存到服务器的指定位置。 5. **配置文件**:在集成过程中,我们...
### Struts2.0框架技术详解 #### 一、MVC思想 **1.1 Model I 模式和 Model II 模式** ##### 1.1.1 Model I 模式 在Model I模式下,整个Web应用几乎全部由JSP页面组成。JSP页面不仅接收处理客户端请求,还直接...
通过以上步骤,我们就完成了在Struts2.0框架下实现文件上传的基本过程。这个例子中,`StrutsUpload`可能是项目或示例代码的名称,具体实现细节可能包含Action类、配置文件、表单页面等相关文件。
在本文中,我们将深入探讨如何使用ExtJS的UploadDialog插件与Struts2.0框架相结合,实现一个功能完备的多文件上传功能。这是一项在Web应用开发中常见的需求,对于用户交互性和数据管理有着重要作用。 首先,让我们...
9. **文件上传与下载**:演示如何在Struts2中处理文件上传和下载,包括文件大小限制、类型检查等。 10. **插件与扩展**:介绍Struts2的一些流行插件,如Tiles、Struts2 Dojo、Struts2 jQuery等,以及如何利用它们...
- **commons-fileupload-1.2.1.jar**:该库用于支持文件上传功能。 - **commons-io-1.3.2.jar**:提供了处理输入输出流的工具类。 - **freemarker-2.3.12.jar**:模板引擎库,用于动态页面的生成。 - **ognl-2.6.11....
### Struts2.0 文件上传知识点详解 #### 一、Struts2 文件上传概述 **Struts2** 是一个基于 **MVC(Model-View-Controller)** 架构模式的开源框架,它广泛应用于Java Web应用程序的开发。在Struts2中,文件上传是...
现在上传的工程的eclipse工程文件,请解压后放在eclipse的工程目录内即可,由于文件太大(主要是lib)包太大,所以这次就没有上传lib包,我将在随后上传其lib包. 如果有什么好的建议或者好的想法请与我联系 m_ylf@163....
- `其他依赖库`:如freemarker、commons-fileupload、commons-lang等,用于视图渲染、文件上传等功能。 在实际开发中,开发者需要根据项目需求选择合适的jar包,并在web应用的类路径下添加这些库,以便正确运行和...
8. **文件上传与下载**:使用Struts2处理文件上传和下载的步骤和注意事项。 9. **异常处理**:Struts2的异常处理机制,包括全局和局部异常处理。 10. **整合其他技术**:如Spring、Hibernate等,构建MVC框架下的完整...
这本书可能还会涉及Struts2.0的最新版本更新,以及一些高级特性,如自定义拦截器、异常处理、文件上传下载、Ajax支持等。通过阅读这本书,开发者能够全面理解Struts2.0的体系结构,熟练掌握其使用方法,从而在实际...