`
lichen0921
  • 浏览: 81187 次
  • 性别: Icon_minigender_1
  • 来自: 天津
社区版块
存档分类
最新评论

struts2 上传文件(临时文件版)

    博客分类:
  • Java
阅读更多

上传文件是很多Web程序都具有的功能。Struts2本身没有提供解析上传文件内容的功能,它使用第三方的文件上传组件提供对文件上传的支持。所以我们要想利用Struts2实现文件上传的功能,首先要将commons-fileupload-1.2.1.jar和commons-io-1.4.jar复制到项目的WEB-INF/lib目录下。

我们知道,Struts1.x的上传组件需要一个ActionForm来辅助传递文件,而Struts2的上传组件却很简单,只用一个拦截器:org.apache.struts2.interceptor.FileUploadInterceptor(这个拦截器不用配置,是自动装载的),它负责调用底层的文件上传组件解析文件内容,并为Action准备与上传文件相关的属性值。这里要强调的是:处理文件上传请求的Action必须提供特殊样式命名的属性。例如,假设表单中文件选择框的名字为upload,那么Action就应该提供以下三个属性upload,uploadFileName,uploadContentType来分别表示上传文件的File对象、上传文件名以及上传文件内容类型。很多人因为忽略了这一点而犯错误。

下面是上传单个文件的JSP页面代码singleUpload.jsp:

<%@ page language="java" contentType="text/html; charset=UTF-8"

   pageEncoding="UTF-8"%>

<%@ taglib prefix="s" uri="/struts-tags"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>上传单个文件</title>

</head>

<body>

<s:actionerror />

<s:form action="upload" method="post" enctype="multipart/form-data">

   <s:file name="upload" label="文件名" />

   <s:textfield name="description" label="文件描述" />

   <s:submit value="上传" />

</s:form>

</body>

</html>

 

注意粗体部分的设置,这是有上传控件的表单所要求的格式。下面是用于上传的动作类的完整代码:

package org.leno.struts2.action;

 

import java.io.*;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

 

public class UploadAction extends ActionSupport {

 

   private static final long serialVersionUID = 1L;

   // 代表上传文件的File对象

   private File upload;

   // 上传文件名

   private String uploadFileName;

   // 上传文件的MIME类型

   private String uploadContentType;

   // 上传文件的描述信息

   private String description;

   // 保存上传文件的目录,相对于WEB应用程序的根路径,在struts.xml中配置

   private String uploadDir;

 

   public File getUpload() {

      return upload;

   }

 

   public void setUpload(File upload) {

      this.upload = upload;

   }

 

   public String getUploadFileName() {

      return uploadFileName;

   }

 

   public void setUploadFileName(String uploadFileName) {

      this.uploadFileName = uploadFileName;

   }

 

   public String getUploadContentType() {

      return uploadContentType;

   }

 

   public void setUploadContentType(String uploadContentType) {

      this.uploadContentType = uploadContentType;

   }

 

   public String getDescription() {

      return description;

   }

 

   public void setDescription(String description) {

      this.description = description;

   }

 

   public String getUploadDir() {

      return uploadDir;

   }

 

   public void setUploadDir(String uploadDir) {

      this.uploadDir = uploadDir;

   }

 

   @Override

   public String execute() throws Exception {

      String newFileName = null;

      // 得到当前时间自1970年1月1日0时0分0秒开始走过的毫秒数

      long now = System.currentTimeMillis();

      // 得到保存上传文件的目录的真实路径

      File dir = new File(ServletActionContext.getServletContext()

            .getRealPath(uploadDir));

      // 如果该目录不存在,就创建

      if (!dir.exists()) {

         dir.mkdirs();

      }

      // 为避免重名文件覆盖,判断上传文件是否有扩展名,以时间戳作为新的文件名

      int index = uploadFileName.lastIndexOf(".");

      if (index != -1) {

         newFileName = now + uploadFileName.substring(index);

      } else {

         newFileName = Long.toString(now);

      }

      // 读取保存在临时目录下的上传文件,写入到新的文件中

      InputStream is = new FileInputStream(upload);

      OutputStream os = new FileOutputStream(new File(dir, newFileName));

      byte[] buf = new byte[1024];

      int len = -1;

      while ((len = is.read(buf)) != -1) {

         os.write(buf, 0, len);

      }

      is.close();

      os.close();

      return SUCCESS;

   }

 

}

 

    在execute方法中的实现代码就很简单了,只是从临时文件复制到指定的路径(在这里是web应用程序下的uploadDir目录)中。上传文件的临时目录的默认值是javax.servlet.context.tempdir的值,但可以通过struts.properties(和struts.xml在同一个目录下)的struts.multipart.saveDir属性设置。Struts2上传文件的默认大小限制是2M(2097152字节),也可以通过struts.properties文件中的struts.multipart.maxSize修改,如struts.multipart.maxSize=102400 表示一次上传文件的总大小不能超过100K字节。另一种改变上传属性的方式是在struts.xml中配置constant。本文采用后者。

下面是我们要用到的Struts2的核心配置文件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.multipart.saveDir" value="e:\\temp"></constant>

   <!-- 上传文件的总大小限制 -->

   <constant name="struts.multipart.maxSize" value="102400"></constant>

   <!-- 资源文件配置 -->

   <constant name="struts.custom.i18n.resources"

      value="ApplicationResources">

   </constant>

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

      <action name="upload"

         class="org.leno.struts2.action.UploadAction">

<!—文件上传拦截器 -->

         <interceptor-ref name="defaultStack">

            <!-- 设置Action能接受的文件的最大长度,而不是对上传文件的最大长度进行限制。

                (因为在Action处理之前,文件已经上传到服务器了。) -->

            <param name="fileUpload.maximumSize">102400</param>

            <param name="fileUpload.allowedTypes">

                image/gif,image/jpeg,image/pjpeg

            </param>

         </interceptor-ref>

         <result name="success">/success.jsp</result>

         <result name="input">/singleUpload.jsp</result>

         <param name="uploadDir">/WEB-INF/UploadFiles</param>

      </action>

   </package>

</struts>

当我们对文件上传进行了更多的控制,上传的文件不满足所指定的限制条件时,我们可以使用特定的I18N键添加相关的错误消息。在src下新建ApplicationResources.properties:

struts.messages.error.uploading=文件上传错误

struts.messages.error.file.too.large=文件上传长度超过了限制的长度

struts.messages.error.content.type.not.allowed=不容许上传这种类型的文件

这样,上传文件如果出错,框架去会自动导向到input结果页面,同时显示错误信息;如果成功,就可以导航到success.jsp。我们可以在success.jsp页中通过<s:property>获得文件的属性(文件名,文件内容类型,文件描述以及文件的长度),代码如下:

<%@ page language="java" contentType="text/html; charset=UTF-8"

   pageEncoding="UTF-8"%>

<%@ taglib prefix="s" uri="/struts-tags" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>上传成功</title>

</head>

<body>

<h1>上传成功,文件信息如下:</h1>

文件名:<s:property value="uploadFileName" /><br/>

文件大小:<s:property value="upload.length()" /><br/>

文件类型:<s:property value="uploadContentType" /><br/>

文件描述:<s:property value="description" /><br/>

</body>

</html>

 

分享到:
评论

相关推荐

    struts2文件上传下载源代码

    在Struts2中,文件上传和下载是常见的功能需求,特别是在处理用户交互和数据交换时。这篇博客文章提供的"struts2文件上传下载源代码"旨在帮助开发者理解和实现这些功能。 文件上传功能允许用户从他们的设备上传文件...

    struts2上传文件源代码

    在这个“struts2上传文件源代码”中,我们将深入探讨Struts2如何实现文件上传功能,以及涉及到的相关知识点。 首先,文件上传是Web应用中常见的功能,它允许用户从本地计算机选择文件并将其发送到服务器。在Struts2...

    Struts2多个文件上传

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

    struts2文件上传例子.rar

    同时,我们还需要配置`struts.multipart.saveDir`属性,指定临时文件保存的位置,以及`struts.multipart.maxSize`,限制上传文件的最大大小。 在视图层,通常会有一个HTML表单,使用`enctype="multipart/form-data...

    struts2 实现文件批量上传

    本项目实现了使用Struts2进行文件批量上传的功能,这涉及到几个关键的技术点,包括文件上传组件的选择、前端表单设计、后端处理逻辑以及存储策略。 1. **文件上传组件**:在Struts2中,我们通常使用`Commons ...

    struts2框架下的文件上传

    - 文件清理:对于Copy模式,Struts2会自动清理临时文件,但其他模式可能需要手动清理。 总之,Struts2框架提供了多种文件上传策略,开发者可以根据具体需求选择合适的方式。无论是简单的Copy模式,还是更灵活的字节...

    struts2文件上传jar

    而`File` 对象则对应于服务器上的临时文件路径,通常在Action执行完毕后,你需要将文件移动到服务器的持久化存储位置。 为了处理用户界面,你可能需要在JSP页面中添加一个`&lt;s:form&gt;` 标签,包含`&lt;s:file&gt;` 输入字段...

    实现struts2的文件上传文件功能

    创建一个继承自`ActionSupport`的类,并在其中定义一个`File`类型的属性和一个`String`类型的属性,用于存储临时文件和文件名。`ActionSupport`类提供了`execute`方法,这是处理文件上传的核心。 ```java public...

    Struts2属性文件详解

    该属性设定了Struts 2文件上传中整个请求内容的最大字节数限制,以防止过大的文件上传导致的问题。 #### struts.custom.properties 指定了Struts 2应用加载的用户自定义属性文件,自定义属性文件中的设置不会覆盖`...

    Struts2之struts2文件上传详解案例struts011

    在Struts2中,文件上传功能是常见的需求,比如用户可能需要上传个人照片、文档或者其他类型的文件。在这个"Struts2之struts2文件上传详解案例struts011"中,我们将深入探讨如何实现这一功能。 首先,我们需要了解...

    struts2文件上传实例

    1. **.struts2配置**:在Struts2框架中,需要在`struts.xml`配置文件中添加相应的action配置,声明文件上传的处理方法。通常,你需要设置`&lt;result&gt;`类型为`stream`,以便处理上传的文件。 2. **Action类**:创建一...

    struts2 文件上传

    // 获取文件临时路径 String tempFilePath = file.get临时路径(); // 将文件移动到服务器的指定目录 File targetFile = new File("/path/to/save/files", realFileName); FileUtils.moveFile(new File...

    struts2文件上传和下载

    2. **Struts2 Action类中的文件处理**: 文件上传后,Struts2会将文件内容存储在一个临时位置。通常,你需要在Action类中创建一个`File`对象和一个`String`类型的属性,如`private File file; private String ...

    struts2 上传文件及打包下载zip

    在这个"struts2 上传文件及打包下载zip"的示例中,我们将探讨如何利用Struts2实现文件上传和下载功能。 首先,文件上传是Web应用程序中的常见需求。在Struts2中,我们可以使用`Struts2`提供的`CommonsFileUpload`...

    基于Struts2的文件上传下载功能的完整源代码。

    在基于Struts2的文件上传下载功能中,它提供了处理用户上传文件和提供文件下载的服务。这个完整的源代码是实现这些功能的一个实例,经过测试确保了其正确性和可用性。 首先,我们要理解Struts2中的Action类。Action...

    struts2上传文件需要的jar包

    Struts2作为一款流行的Java Web框架,为开发者提供了丰富的功能,包括文件上传。在使用Struts2进行文件上传时,需要依赖两个关键的第三方库:`commons-fileupload-1.2.1.jar` 和 `commons-io-1.4.jar`。这两个库在...

    Struts2框架实现文件上传

    这里`struts.multipart.saveDir`定义了临时文件保存的目录,`struts.multipart.maxSize`设定了允许上传的最大文件大小。 3. **Action类**: 创建一个处理文件上传的Action类,需要继承自`org.apache.struts2....

    Struts2实现文件上传

    首先,需要在Struts2的配置文件(struts.xml)中添加FileUpload拦截器,这允许Struts2处理上传的文件。通常,你需要引入`struts2-convention-plugin`和`struts2-file-uploading-plugin`。 2. **表单设置**: 在...

    Struts2文件批量上传

    Struts2文件批量上传是Java Web开发中常见的一种功能,主要应用于网站后台处理大量用户上传的文件,如图片、文档等。Struts2是一个强大的MVC框架,它提供了丰富的功能来支持文件上传操作,包括单个文件上传和批量...

    在Struts 2中实现文件上传

    Struts 2 文件上传是基于 Apache Commons FileUpload 组件实现的,这个组件处理 HTTP 请求中的多部分数据,将上传的文件保存到服务器的临时目录。Struts 2 的 fileUpload 拦截器则负责将这些文件绑定到 Action 对象...

Global site tag (gtag.js) - Google Analytics