Struts2实现单文件或多文件上传功能

 更新时间:2017年03月27日 16:26:06   作者:hzc543806053  
这篇文章主要为大家详细介绍了Struts2实现单文件或多文件上传功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

一、简述

Struts2的文件上传其实也是通过拦截器来实现的,只是该拦截器定义为默认拦截器了,所以不用自己去手工配置,<interceptor name="fileUpload" class="org.apache.struts2.interceptor.FileUploadInterceptor"/>

二、指定用户上传文件的大小,有两种方式

1)默认是在default.properties 文件的 struts.multipart.maxSize=2097152  键值指定为2097152 也就是2M,通过计算 2097152/(1024*1024) = 2 M

那我们可以改变其默认值,只要在src目录下,新建一个 struts.properties 文件,指定上传大小 如下:

一次上传只可以上传10M,不管一次上传多少个文件,按总和计算

2)在struts.xml文件中指定,如图:

其实name就对应struts.properties的键,value对应 值

注意:如果即在struts.properties设定文件上传大小,又在struts.xml 设定文件上传大小,则struts.properties的优先级高于struts.xml,一般在一处指定上传大小即可,推荐 struts.properties

三、Struts2之单文件上传

1.fileupload.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 
<% 
String path = request.getContextPath(); 
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 
%> 
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
<html> 
 <head> 
 <base href="<%=basePath%>" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > 
  
 <title>My JSP 'fileupload.jsp' starting page</title> 
  
 <meta http-equiv="pragma" content="no-cache"> 
 <meta http-equiv="cache-control" content="no-cache"> 
 <meta http-equiv="expires" content="0">  
 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 
 <meta http-equiv="description" content="This is my page"> 
 <!-- 
 <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > 
 --> 
 
 </head> 
 
 <body> 
  <!-- enctype 默认是 application/x-www-form-urlencoded --> 
  <form action="FileUpload2" enctype="multipart/form-data" method="post" > 
   
    用户名:<input type="text" name="usename"> <br/> 
    上传文件:<input type="file" name="file1"><br/> 
     
    <input type="submit" value="提交"/> 
  
  </form> 
  
  
  
 </body> 
</html> 

2.具体处理上传的 FileUpload.java

package com.struts2.fileupload; 
 
import java.io.File; 
import java.io.FileInputStream; 
import java.io.FileOutputStream; 
import java.io.InputStream; 
import java.io.OutputStream; 
 
import org.apache.struts2.ServletActionContext; 
 
import com.opensymphony.xwork2.ActionSupport; 
 
/** 
 * 单个文件上传 
 * @author Administrator 
 * 上传文件其实是上传了两份, 
 * 
 * 首先将上传的文件保存到 default.properties 文件中 struts.multipart.saveDir键指定的目录中 
 * 默认是空的 
 * 保存在 Tomcat 6.0\work\Catalina\localhost\struts2目录下以.tmp后缀名的文件 
 * 
 * 如果要在 struts.multipart.saveDir 指定目录, 则可以在 src文件夹下 建一个 struts.properties, 
 * 覆盖 default.properties 的某些键值 
 * 
 * 还有一份是 存放在自己设定的目录下 
 */ 
public class FileUpload extends ActionSupport { 
  
 private String usename ; 
 private File file1 ; //具体上传文件的 引用 , 指向临时目录中的临时文件 
 private String file1FileName ; // 上传文件的名字 ,FileName 固定的写法 
 private String file1ContentType ; //上传文件的类型, ContentType 固定的写法 
  
 public String getUsename() { 
  return usename; 
 } 
 public void setUsename(String usename) { 
  this.usename = usename; 
 } 
 public File getFile1() { 
  return file1; 
 } 
 public void setFile1(File file1) { 
  this.file1 = file1; 
 } 
 public String getFile1FileName() { 
  return file1FileName; 
 } 
 public void setFile1FileName(String file1FileName) { 
  this.file1FileName = file1FileName; 
 } 
 public String getFile1ContentType() { 
  return file1ContentType; 
 } 
 public void setFile1ContentType(String file1ContentType) { 
  this.file1ContentType = file1ContentType; 
 } 
  
 @Override 
 public String execute() throws Exception { 
  //获取文件存储路径 
  String path = ServletActionContext.getRequest().getRealPath("/upload"); 
  //输出流 
  OutputStream os = new FileOutputStream(new File(path,file1FileName)); 
  //输入流 
  InputStream is = new FileInputStream(file1); 
   
  byte[] buf = new byte[1024]; 
  int length = 0 ; 
   
  while(-1 != (length = is.read(buf) ) ) 
  { 
   os.write(buf, 0, length) ; 
  } 
  is.close(); 
  os.close(); 
   
  return SUCCESS; 
 } 
  
  
  
 
} 

3.最终显示结果的页面,filedemo.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 
<%@ taglib prefix="s" uri="/struts-tags" %> 
 
<% 
String path = request.getContextPath(); 
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 
%> 
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
<html> 
 <head> 
 <base href="<%=basePath%>" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > 
  
 <title>My JSP 'filedemo.jsp' starting page</title> 
  
 <meta http-equiv="pragma" content="no-cache"> 
 <meta http-equiv="cache-control" content="no-cache"> 
 <meta http-equiv="expires" content="0">  
 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 
 <meta http-equiv="description" content="This is my page"> 
 <!-- 
 <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > 
 --> 
 
 </head> 
 
 <body> 
 上传成功: <br/> 
 usename: <s:property value="usename" /><br/> 
 file: <s:property value="file1FileName"/><br/> 
 contentType: <s:property value="file1ContentType"/> 
  
 </body> 
</html> 

四、Struts2之多文件上传

1.fileupload.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 
<% 
String path = request.getContextPath(); 
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 
%> 
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
<html> 
 <head> 
 <base href="<%=basePath%>" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > 
  
 <title>My JSP 'fileupload.jsp' starting page</title> 
  
 <meta http-equiv="pragma" content="no-cache"> 
 <meta http-equiv="cache-control" content="no-cache"> 
 <meta http-equiv="expires" content="0">  
 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 
 <meta http-equiv="description" content="This is my page"> 
 <!-- 
 <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > 
 --> 
 
 </head> 
 
 <body> 
  <!-- enctype 默认是 application/x-www-form-urlencoded --> 
  <form action="FileUpload2" enctype="multipart/form-data" method="post" > 
   
    用户名:<input type="text" name="usename"> <br/> 
    上传文件:<input type="file" name="file1"><br/> 
    上传文件: <input type="file" name="file1"><br/> <!-- 两个名字相同 都是file1 --> 
    <input type="submit" value="提交"/> 
  
  </form> 
  
  
  
 </body> 
</html> 

两个上传文件的name属性值要是一样的,后台方便处理

2.具体处理上传文件的FileUpload2.java

多文件上传用集合的方式

package com.struts2.fileupload; 
 
import java.io.File; 
import java.io.FileInputStream; 
import java.io.FileOutputStream; 
import java.io.InputStream; 
import java.io.OutputStream; 
import java.util.List; 
 
import org.apache.struts2.ServletActionContext; 
 
import com.opensymphony.xwork2.ActionSupport; 
 
/** 
 * 多文件上传,用集合的方式 
 * @author Administrator 
 * 
 */ 
 
public class FileUpload2 extends ActionSupport { 
  
 private String usename ; 
 private List<File> file1 ; 
 private List<String> file1FileName ; 
 private List<String> file1ContentType ; 
  
 public String getUsename() { 
  return usename; 
 } 
 public void setUsename(String usename) { 
  this.usename = usename; 
 } 
 public List<File> getFile1() { 
  return file1; 
 } 
 public void setFile1(List<File> file1) { 
  this.file1 = file1; 
 } 
 public List<String> getFile1FileName() { 
  return file1FileName; 
 } 
 public void setFile1FileName(List<String> file1FileName) { 
  this.file1FileName = file1FileName; 
 } 
 public List<String> getFile1ContentType() { 
  return file1ContentType; 
 } 
 public void setFile1ContentType(List<String> file1ContentType) { 
  this.file1ContentType = file1ContentType; 
 } 
  
 @Override 
 public String execute() throws Exception { 
   
  //获取文件存储路径 
  String path = ServletActionContext.getRequest().getRealPath("/upload"); 
   
  for(int i = 0 ; i < file1.size() ; i++ ) 
  { 
   OutputStream os = new FileOutputStream(new File(path,file1FileName.get(i))); 
    
   InputStream is = new FileInputStream(file1.get(i)); 
    
   byte[] buf = new byte[1024]; 
   int length = 0 ; 
    
   while(-1 != (length = is.read(buf) ) ) 
   { 
    os.write(buf, 0, length) ; 
   } 
    
   is.close(); 
   os.close(); 
    
  } 
   
  return SUCCESS; 
 } 
 
} 

3.用于显示的界面filedemo.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 
<%@ taglib prefix="s" uri="/struts-tags" %> 
 
<% 
String path = request.getContextPath(); 
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 
%> 
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
<html> 
 <head> 
 <base href="<%=basePath%>" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > 
  
 <title>My JSP 'filedemo2.jsp' starting page</title> 
  
 <meta http-equiv="pragma" content="no-cache"> 
 <meta http-equiv="cache-control" content="no-cache"> 
 <meta http-equiv="expires" content="0">  
 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 
 <meta http-equiv="description" content="This is my page"> 
 <!-- 
 <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > 
 --> 
 
 </head> 
 
 <body> 
    上传成功:<br/> 
  usename:<s:property value="usename"/><br/> 
    <!-- 遍历值 --> 
    <s:iterator value="file1FileName" id="f"> <!-- id是一个对象,目前是一个字符串集合 可任意命名 --> 
             文件:<s:property value="#f"/> <br/> 
    <!-- 这里也可以调用方法 <s:property value="#f.toUpperCase()"/> --> 
    </s:iterator> 
  
  
 </body> 
</html> 

遍历集合的方式,用struts2提供的标签 iterator 可以实现

<s:iterator value="file1FileName" id="f"> <!-- id是一个对象,目前是一个字符串集合 可任意命名-->
    文件:<s:property value="#f"/> <br/> 
    <!-- 这里也可以调用方法 <s:property value="#f.toUpperCase()"/> -->
    toUpperCase()字符串的方法是把字母转为大写
</s:iterator>

下载链接:

1)Servlet 文件上传  点击打开链接
2)Struts2之下载  点击打开链接

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Mybatis一对多和多对一处理的深入讲解

    Mybatis一对多和多对一处理的深入讲解

    Mybatis可以通过关联查询实现,关联查询是几个表联合查询,只查询一次,通过在resultMap里面的association,collection节点配置一对一,一对多的类就可以完成,这篇文章主要给大家介绍了关于Mybatis一对多和多对一处理的相关资料,需要的朋友可以参考下
    2021-09-09
  • Java使用反射和动态代理实现一个View注解绑定库

    Java使用反射和动态代理实现一个View注解绑定库

    这篇文章主要介绍了Java使用反射和动态代理实现一个View注解绑定库,代码简洁,使用简单,扩展性强,结合实例代码给大家介绍的非常详细,需要的朋友可以参考下
    2022-05-05
  • Spring Boot Gradle发布war到tomcat的方法示例

    Spring Boot Gradle发布war到tomcat的方法示例

    本篇文章主要介绍了Spring Boot Gradle发布war到tomcat的方法示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-03-03
  • SpringBoot中配置log4j2日志详解

    SpringBoot中配置log4j2日志详解

    这篇文章主要介绍了SpringBoot中配置log4j2日志详解,Apache Log4j2 是对原先的 Log4j 项目的升级版本,参考了 logback 的一些优秀的设计,并且修复了一些问题,因此带来了一些重大的提升,需要的朋友可以参考下
    2023-11-11
  • java基础的详细了解第二天

    java基础的详细了解第二天

    这篇文章对Java编程语言的基础知识作了一个较为全面的汇总,在这里给大家分享一下。需要的朋友可以参考,希望能给你带来帮助
    2021-08-08
  • springboot项目如何设置session的过期时间

    springboot项目如何设置session的过期时间

    这篇文章主要介绍了springboot项目如何设置session的过期时间,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2022-01-01
  • mybatis Plus 多表联合查询的实现示例

    mybatis Plus 多表联合查询的实现示例

    这篇文章主要介绍了mybatis Plus 多表联合查询的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-09-09
  • Java基础知识之CharArrayReader流的使用

    Java基础知识之CharArrayReader流的使用

    这篇文章主要介绍了Java基础知识之CharArrayReader流的使用,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2021-12-12
  • logback日志输出格式设置方式

    logback日志输出格式设置方式

    这篇文章主要介绍了logback日志输出格式设置方式,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-04-04
  • Netty分布式flush方法刷新buffer队列源码剖析

    Netty分布式flush方法刷新buffer队列源码剖析

    这篇文章主要为大家介绍了Netty分布式flush方法刷新buffer队列源码剖析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-03-03

最新评论