四、多个文件上传:

五、struts2文件下载:

多个文件上传action

com.cy.action.FilesUploadAction.java:

package com.cy.action;

import java.io.File;

import org.apache.commons.io.FileUtils;

import com.opensymphony.xwork2.ActionSupport;

public class FilesUploadAction extends ActionSupport{
private static final long serialVersionUID = 1L; private File[] struts; //文件,对应fileupload.jsp中input type=file的name
private String[] strutsFileName; //文件名
private String[] strutsContentType; //文件类型 public File[] getStruts() {
return struts;
} public void setStruts(File[] struts) {
this.struts = struts;
} public String[] getStrutsFileName() {
return strutsFileName;
} public void setStrutsFileName(String[] strutsFileName) {
this.strutsFileName = strutsFileName;
} public String[] getStrutsContentType() {
return strutsContentType;
} public void setStrutsContentType(String[] strutsContentType) {
this.strutsContentType = strutsContentType;
} @Override
public String execute() throws Exception {
for(int i=0; i<struts.length; i++){
System.out.println("文件名:" + strutsFileName[i]);
System.out.println("文件类型:" + strutsContentType[i]);
String filePath = "E:/" + strutsFileName[i];
File savefile = new File(filePath);
FileUtils.copyFile(struts[i], savefile);
}
return SUCCESS;
} }

文件下载action

FileDownloadAction.java:

package com.cy.action;

import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream; import com.opensymphony.xwork2.ActionSupport; public class FileDownloadAction extends ActionSupport{ private static final long serialVersionUID = 1L;
private String fileName; //下载的文件名 public String getFileName() throws Exception {
fileName=new String(fileName.getBytes(),"ISO8859-1"); //对文件中文名进行重编码
return fileName;
}
public void setFileName(String fileName){
this.fileName = fileName;
} /**
* 返回的是文件流
* @return
* @throws Exception
*/
public InputStream getInputStream() throws Exception{
File file = new File("E:/1.jpg"); //将E盘下的1.png下载下来
this.fileName = "美女哇哇.png"; //重新定义文件名
return new FileInputStream(file); //返回inputStream
}
}

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> <!-- 配置允许上传文件最大为20000000Byte,约20Mb -->
<constant name="struts.multipart.maxSize" value="20000000"></constant> <package name="manage" extends="struts-default">
<action name="upload" class="com.cy.action.FileUploadAction">
<result name="input">fileupload.jsp</result>
<result name="success">success.jsp</result> <!-- 配置允许上传的文件类型
配置允许上传的文件大小,最大81101byte,= 79.2KB
-->
<interceptor-ref name="fileUpload">
<param name="allowedTypes">image/bmp,image/x-png,image/gif,image/jpg,image/jpeg</param>
<param name="maximumSize">81101</param>
</interceptor-ref> <interceptor-ref name="defaultStack"></interceptor-ref>
</action> <action name="uploads" class="com.cy.action.FilesUploadAction">
<result name="input">filesupload.jsp</result>
<result name="success">success.jsp</result>
</action> <action name="download" class="com.cy.action.FileDownloadAction">
<result type="stream">
<param name="contentDisposition">attachment;filename=${fileName}</param>
</result>
</action>
</package> </struts>

多个文件上传filesupload.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>Insert title here</title>
</head>
<body>
<form action="uploads" method="post" enctype="multipart/form-data">
选择文件1:<input type="file" name="struts" /><br/>
选择文件2:<input type="file" name="struts" /><br/>
选择文件3:<input type="file" name="struts" /><br/>
<input type="submit" value="提交" />
</form>
</body>
</html>

文件上传成功success.jsp:

<body>
文件上传成功!
</body>

文件下载filedownload.jsp:

<body>
<a href="download">文件下载</a>
</body>

测试结果:

1.多个文件上传:

选择文件上传,成功后console打印:

2.文件下载,将E盘下的1.jpg下载下来:

struts2学习(14)struts2文件上传和下载(4)多个文件上传和下载的更多相关文章

  1. Struts2学习一----------Struts2的工作原理及HelloWorld简单实现

    © 版权声明:本文为博主原创文章,转载请注明出处 Struts2工作原理 一个请求在Struts2框架中的处理步骤: 1.客户端初始化一个指向Servlet容器(例如Tomcat)的请求 2.这个请求 ...

  2. struts2学习(13)struts2文件上传和下载(1)

    一.Struts2文件上传: 二.配置文件的大小以及允许上传的文件类型: 三.大文件上传: 如果不配置上传文件的大小,struts2默认允许上传文件最大为2M: 2097152Byte:   例子实现 ...

  3. Struts2学习笔记——Struts2与Spring整合

      Struts2与Spring整合后,可以使用Spring的配置文件applicationContext.xml来描述依赖关系,在Struts2的配置文件struts.xml来使用Spring创建的 ...

  4. struts2学习(2)struts2核心知识

    一.Struts2 get/set 自动获取/设置数据 根据上一章.中的源码继续. HelloWorldAction.java中private String name,自动获取/设置name: pac ...

  5. struts2学习(12)struts2验证框架2.自定义验证

    一.例子需求: 对敏感词进行验证: 将struts包中的validators.xml文件拷贝一份到src目录下,在最后面添加自己的验证器: com.cy.validators.SensitiveWor ...

  6. struts2学习(10)struts2国际化

    一.国际化简介: 二.struts2国际化设置: struts.xml: <?xml version="1.0" encoding="UTF-8" ?&g ...

  7. struts2学习(3)struts2核心知识II

    一.struts.xml配置: 1.分模块配置方法: 比如某个系统多个模块,我们把资产管理模块和车辆管理模块,分开,在总的struts.xml配置文件中include他们: 工程结构: struts. ...

  8. Struts2学习笔记——Struts2搭建和第一个小程序

    1.新建web项目 2.配置Struts2核心过滤器 (1)打开web.xml文件,做以下配置: <?xml version="1.0" encoding="UTF ...

  9. Struts2学习笔记--Struts2的体系结构

    1. Struts2体系结构 Struts是以前端控制器框架为主体的框架,用户的请求会通过控制器选择不同的Action类来执行具体的操作,在Action类中所有的Servlet对象(request.r ...

随机推荐

  1. *SCM-MANAGERtomcat寄宿使用

    采用的部署方式 TomCat 一个端口下部署多个 Application供不同部门使用 初始部署详参见 SCM-MANAGER 博文 日常使用添加部门操作步骤 从“D:\tomcat\webapps” ...

  2. set类型以及其操作

    sets类型 sets类型以及操作Set是无序集合,它是string类型的无序集合.set是通过hash table实现的,添加.删除和查找的复杂度都是0(1).对集合我们可以取并集.交集.差集.通过 ...

  3. Slice Header中的field_pic_flag的含义?

    编码模式指帧编码.场编码.帧场自适应编码.当这个句法元素取值为1时属于场编码:0为非场编码. 序列参数集中的句法元素frame_mbs_only_flag和mb_adaptive_frame_fiel ...

  4. TreeSet实现原理及源码分析

    类似于HashMap和HashSet之间的关系,HashSet底层依赖于HashMap实现,TreeSet底层则采用一个NavigableMap来保存TreeSet集合的元素.但实际上,由于Navig ...

  5. Xcode 9 俩个你必须知道的新功能

    Xcode 9 beta 版已经可以下载了,不知道大家伙对这个新版本开发工具看法如何,最近我费了一番周折终于体验了一把,升级系统,下载Xcode,验证安装扒拉扒拉什么的,几乎搞了我一天,我做开发使用的 ...

  6. 主机屋MySQL数据库链接

    点击高级设置,进入Myadmin,导入数据 要注意,数据库名字不能变,这是人家给的. 在php链接时,: $db=[ // 服务器地址 'hostname' => 'localhost', // ...

  7. 文件处理工具 gif合成工具 文件后缀批量添加工具 文件夹搜索工具 重复文件查找工具 网页图片解析下载工具等

    以下都是一些简单的免费分享的工具,技术支持群:592132877,提供定制化服务开发. Gif动图合成工具 主要功能是扫描指定的文件夹里的所有zip文件,然后提取Zip文件中的图片,并合成一张gif图 ...

  8. keras channels_last、preprocess_input、全连接层Dense、SGD优化器、模型及编译

    channels_last 和 channels_first keras中 channels_last 和 channels_first 用来设定数据的维度顺序(image_data_format). ...

  9. RankNet

    RankNet 论文的笔记:Learning to rank using gradient descent. 模型 特征 \(\mathbf x_i \in \mathbb R^d\) 模型函数:\( ...

  10. 因为yii2中jquery位置默认在最下方,可将自定义js位置放在下方

    因为yii2中jquery位置默认在最下方,可将自定义js位置放在下方,这样就可以执行当页面加载完触发动作.记录下方式,查找方便 <?php $this->beginBlock('test ...