欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解Java的Struts框架中上传文件和客户端验证的实现

程序员文章站 2024-03-08 11:20:36
文件上传 struts 2框架提供了内置支持处理文件上传使用基于html表单的文件上传。上传一个文件时,它通常会被存储在一个临时目录中,他们应该由action类进行处理或...

文件上传

struts 2框架提供了内置支持处理文件上传使用基于html表单的文件上传。上传一个文件时,它通常会被存储在一个临时目录中,他们应该由action类进行处理或移动到一个永久的目录,以确保数据不丢失。

请注意,服务器有一个安全策略可能会禁止写到目录以外的临时目录和属于web应用的目录。

在struts中的文件上传是通过预先定义的拦截文件上传拦截器这是可通过org.apache.struts2.interceptor.fileuploadinterceptor类的defaultstack中的一部分。仍然可以使用在struts.xml中设置各种参数,我们将在下面看到。

创建视图文件:
让我们开始创建我们认为这将需要浏览和上传选定的文件。因此,让我们创建一个纯html上传表单,允许用户上传文件 index.jsp:

<%@ page language="java" contenttype="text/html; charset=iso-8859-1"
pageencoding="iso-8859-1"%>
<%@ 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>
<title>file upload</title>
</head>
<body>
  <form action="upload" method="post" enctype="multipart/form-data">
   <label for="myfile">upload your file</label>
   <input type="file" name="myfile" />
   <input type="submit" value="upload"/>
  </form>
</body>
</html>

在上面的例子中值得注意几点说明。首先,表单的enctype属性设置为multipart/ form-data。这应该是设置为使得处理文件上传文件上传。下一个点值得注意的是表单的 action方法上传和文件上传字段的名称 - myfile。我们需要这些信息创建操作方法和struts配置。

接下来让我们创建一个简单的 jsp 文件的success.jsp 结果显示我们的文件上传的情况下成功。

<%@ page contenttype="text/html; charset=utf-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>file upload success</title>
</head>
<body>
you have successfully uploaded <s:property value="myfilefilename"/>
</body>
</html>

下面将结果文件error.jsp 可能会有一些错误,在上传文件:

<%@ page contenttype="text/html; charset=utf-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>file upload error</title>
</head>
<body>
there has been an error in uploading the file.
</body>
</html>

创建action类:
接下来让我们创建一个java类称为 uploadfile.java 这会处理上传文件,该文件存储在一个安全的位置:

package com.yiibai.struts2;

import java.io.file;
import org.apache.commons.io.fileutils;
import java.io.ioexception; 

import com.opensymphony.xwork2.actionsupport;

public class uploadfile extends actionsupport{
  private file myfile;
  private string myfilecontenttype;
  private string myfilefilename;
  private string destpath;

  public string execute()
  {
   /* copy file to a safe location */
   destpath = "c:/apache-tomcat-6.0.33/work/";

   try{
    system.out.println("src file name: " + myfile);
    system.out.println("dst file name: " + myfilefilename);
      
    file destfile = new file(destpath, myfilefilename);
   fileutils.copyfile(myfile, destfile);
 
   }catch(ioexception e){
     e.printstacktrace();
     return error;
   }

   return success;
  }
  public file getmyfile() {
   return myfile;
  }
  public void setmyfile(file myfile) {
   this.myfile = myfile;
  }
  public string getmyfilecontenttype() {
   return myfilecontenttype;
  }
  public void setmyfilecontenttype(string myfilecontenttype) {
   this.myfilecontenttype = myfilecontenttype;
  }
  public string getmyfilefilename() {
   return myfilefilename;
  }
  public void setmyfilefilename(string myfilefilename) {
   this.myfilefilename = myfilefilename;
  }
}

uploadfile.java是一个非常简单的类。重要的是要注意的是使用fileupload拦截器随着参数intercetpor 确实为我们解决所有繁重工作。文件上传拦截器,使三个参数,默认情况下提供。它们被命名为以下模式:

[your file name parameter] - 这是实际的文件的上载。在这个例子中是 "myfile"

[your file name parameter]contenttype - 这是被上传的文件,该文件的内容类型。在这个例子中是 "myfilecontenttype"

[your file name parameter]filename - 这是被上传的文件的名称。在这个例子中是 "myfilefilename"

这三个参数是为我们提供的,这要归功于struts的拦截器。所有我们需要做的是在我们的action类,这些变量是自动连线我们以正确的名称创建三个参数。所以,在上面的例子中,我们有三个参数的操作方法简单地返回“success”,如果一切顺利,否则返回“error”。

配置文件:
以下是struts2的配置属性可以控制文件上传过程:

详解Java的Struts框架中上传文件和客户端验证的实现

为了改变这些设置,可以使用恒定的标签在应用程序 struts.xml文件,像我一样改变要上传的文件的最大大小。让我们有我们的在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.devmode" value="true" />
  <constant name="struts.multipart.maxsize" value="1000000" />

  <package name="helloworld" extends="struts-default">
  <action name="upload" class="com.yiibai.struts2.uploadfile">
    <result name="success">/success.jsp</result>
    <result name="error">/error.jsp</result>
  </action>
  </package>
</struts>

由于fileupload拦截器是拦截器defaultstack的一部分,我们并不需要明确地配置。但可以添加<interceptor-ref>标签到<action>里面。文件上传拦截器需要两个参数:(a)maximumsize及(b)allowedtypes。maximumsize参数设置允许的最大文件大小(默认为约2mb)。allowedtypes参数接受的内容是一个逗号分隔的列表(mime)类型,如下所示:

  <action name="upload" class="com.yiibai.struts2.uploadfile">
    <interceptor-ref name="basicstack">
    <interceptor-ref name="fileupload">
      <param name="allowedtypes">image/jpeg,image/gif</param>
    </interceptor-ref>
    <result name="success">/success.jsp</result>
    <result name="error">/error.jsp</result>
  </action>

以下是web.xml文件中的内容:

<?xml version="1.0" encoding="utf-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
  xmlns="http://java.sun.com/xml/ns/javaee" 
  xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  xsi:schemalocation="http://java.sun.com/xml/ns/javaee 
  http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
  id="webapp_id" version="3.0">
  
  <display-name>struts 2</display-name>
  <welcome-file-list>
   <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  <filter>
   <filter-name>struts2</filter-name>
   <filter-class>
     org.apache.struts2.dispatcher.filterdispatcher
   </filter-class>
  </filter>

  <filter-mapping>
   <filter-name>struts2</filter-name>
   <url-pattern>/*</url-pattern>
  </filter-mapping>
</web-app>

现在右键点击项目名称,并单击 export > war file 创建一个war文件。然后部署此war在tomcat 的webapps目录下。最后,启动tomcat服务器和尝试访问url http://localhost:8080/helloworldstruts2/upload.jsp。这会给出以下画面:

详解Java的Struts框架中上传文件和客户端验证的实现

现在选择一个文件的“contacts.txt”使用“浏览”按钮,然后点击上传按钮,将文件上传,应该看到页面。可以检查上传的文件保存在 c:apache-tomcat-6.0.33work.

详解Java的Struts框架中上传文件和客户端验证的实现

请注意,使用fileupload拦截删除上传的文件自动所以需要编程在一些位置上保存上传的文件被删除之前。

错误消息:
fileuplaod拦截器使用几个默认的错误消息键:

详解Java的Struts框架中上传文件和客户端验证的实现

验证框架

现在,我们将看看如何的struts验证框架。在struts的核心有验证框架,协助应用程序的运行规则来执行验证执行之前的操作方法。

通常是使用javascript来实现客户端验证。但不应单独依赖于客户端验证。最佳实践表明,验证应引入各级应用程序框架。现在,让我们来看看两种方式添加验证我们的struts项目。

在这里,我们将采取一个例子,employee 将被捕获的姓名和年龄使用一个简单的页面,我们将会把两个验证,以确保使用总是进入一个名字和年龄应该是在28和65之间。所以,让我们先从主jsp页面的例子。

创建主页面:
让我们写主jsp页面文件的index.jsp,这将被用来收集上述员工的相关信息。

<%@ page language="java" contenttype="text/html; charset=iso-8859-1"
  pageencoding="iso-8859-1"%>
<%@ 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>
<title>employee form</title>
</head>

<body>
  <s:form action="empinfo" method="post">
   <s:textfield name="name" label="name" size="20" />
   <s:textfield name="age" label="age" size="20" />
   <s:submit name="submit" label="submit" align="center" />
  </s:form>
</body>
</html>

在index.jsp使用struts的标签,我们还没有涉及,但我们将研究这些标签相关的章节。但现在,假设 s:textfield 标签打印一个输入字段s:submit打印一个提交按钮。我们已经使用label属性标签,每个标签每个标签创建。

创建视图:
我们将使用jsp文件的success.jsp将调用的情况下定义的动作返回success。

<%@ page language="java" contenttype="text/html; charset=iso-8859-1"
 pageencoding="iso-8859-1"%>
<%@ 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>
<title>success</title>
</head>
<body>
  employee information is captured successfully.
</body>
</html>

创建动作:
因此,让我们定义一个小小的动作类employee,然后添加一个方法称为validate(),如下所示在employee.java文件。请确保操作类扩展actionsupport类,否则validate方法将不会被执行。

package com.yiibai.struts2;

import com.opensymphony.xwork2.actionsupport;

public class employee extends actionsupport{
  private string name;
  private int age;
  
  public string execute() 
  {
    return success;
  }
  public string getname() {
    return name;
  }
  public void setname(string name) {
    this.name = name;
  }
  public int getage() {
    return age;
  }
  public void setage(int age) {
    this.age = age;
  }

  public void validate()
  {
   if (name == null || name.trim().equals(""))
   {
     addfielderror("name","the name is required");
   }
   if (age < 28 || age > 65)
   {
     addfielderror("age","age must be in between 28 and 65");
   }
  }
}

如在上面的例子所示,“name”字段的验证方法检查是否有一个值,或不。如果没有值已经提供,我们添加一个带有自定义错误消息“age”字段的字段错误。其次,我们检查,如果输入的值是在28和65之间或不为“age”字段,如果这个条件不符合我们以上验证字段添加一个错误。

配置文件:
最后,让我们把所有东西一起使用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.devmode" value="true" />
  <package name="helloworld" extends="struts-default">

   <action name="empinfo" 
     class="com.yiibai.struts2.employee"
     method="execute">
     <result name="input">/index.jsp</result>
     <result name="success">/success.jsp</result>
   </action>

  </package>

</struts>

以下是web.xml文件中的内容:

<?xml version="1.0" encoding="utf-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
  xmlns="http://java.sun.com/xml/ns/javaee"
  xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  xsi:schemalocation="http://java.sun.com/xml/ns/javaee
  http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
  id="webapp_id" version="3.0">

  <display-name>struts 2</display-name>
  <welcome-file-list>
   <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>

  <filter>
   <filter-name>struts2</filter-name>
   <filter-class>
     org.apache.struts2.dispatcher.filterdispatcher
   </filter-class>
  </filter>

  <filter-mapping>
   <filter-name>struts2</filter-name>
   <url-pattern>/*</url-pattern>
  </filter-mapping>
</web-app>

现在,右键点击项目名称,并单击export > war file创建一个war文件。然后部署此war在tomcat的webapps目录下。最后,启动tomcat服务器和尝试访问url http://localhost:8080/helloworldstruts2/index.jsp。这会给出以下画面:

详解Java的Struts框架中上传文件和客户端验证的实现

现在不输入任何所需信息,只需点击“submit ”按钮。将看到以下结果:

详解Java的Struts框架中上传文件和客户端验证的实现

输入所需的信息,但输入了错误的from字段,让我们说“test”和年龄为30,最后点击“submit ”按钮。将看到以下结果:

详解Java的Struts框架中上传文件和客户端验证的实现

此验证是如何工作的?
当用户按下提交按钮时,struts2会自动执行的验证方法,如果任何一个if语句里面的方法列出,struts 2调用addfielderror方法。如果有任何错误已加入struts 2将不会进行调用execute方法。而struts 2框架将返回输入作为调用该行动的结果。

因此,验证失败时struts2返回输入,struts 2框架将重新显示index.jsp文件。因为我们使用了struts 2的表单标签,struts2中会自动添加错误消息,只是上面的形式提交。

这些错误消息是我们addfielderror方法调用中指定的。addfielderror方法有两个参数。首先是表单字段名错误,第二个是错误信息,上面显示该表单字段。

addfielderror("name","the name is required");

要处理的返回值输入,我们需要添加以下的结果,以我们的动作节点在struts.xml。

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

基于xml的验证:
在进行验证的第二个方法是通过将一个xml文件的动作类。struts2的基于xml验证的验证提供了更多的选择,如电子邮件验证,整数范围验证,表单验证字段,表达式验证,正则表达式验证,需要验证,验证所需的字符串,字符串长度的验证等。

xml文件需要被命名为'[action-class]'-validation.xml。所以,在我们的例子中,我们创建一个文件,名为 employee-validation.xml包含以下内容:

<!doctype validators public 
"-//opensymphony group//xwork validator 1.0.2//en"
"http://www.opensymphony.com/xwork/xwork-validator-1.0.2.dtd">

<validators>
  <field name="name">
   <field-validator type="required">
     <message>
      the name is required.
     </message>
   </field-validator>
  </field>

  <field name="age">
   <field-validator type="int">
     <param name="min">29</param>
     <param name="max">64</param>
     <message>
      age must be in between 28 and 65
     </message>
   </field-validator>
  </field>
</validators>

上面的xml文件会被保存在classpath 沿着类文件。让我们有我们的雇员动作类没有validate()方法如下:

package com.yiibai.struts2;

import com.opensymphony.xwork2.actionsupport;

public class employee extends actionsupport{
  private string name;
  private int age;
  
  public string execute() 
  {
    return success;
  }
  public string getname() {
    return name;
  }
  public void setname(string name) {
    this.name = name;
  }
  public int getage() {
    return age;
  }
  public void setage(int age) {
    this.age = age;
  }
}

其余的设置将保持,因为它是我前面的例子,现在,如果运行应用程序,它会产生相同的结果是什么,我们在前面的例子:

xml文件来存储配置的优点是允许的验证从应用程序代码的分离。可以让开发人员编写的代码和业务分析师建立验证xml文件。要注意的是另一件事是默认提供的验证类型。有大量的验证,默认情况下,使用struts。常见的验证包括验证日期,正则表达式验证字符串长度的验证。检查以下链接更多细节 struts - 基于xml的校验.