jsp,jquery,spring mvc 实现导出文件
需求:在界面上选择一个日期,然后点击导出按钮,直接导出选择月份的考勤excel文件.
这篇文章主要是介绍如何下载文件!
jsp中代码:
<div class="form-group">
<label class="col-md-1 col-sm-1 control-label manage-lab">当前月份:</label>
<div class="col-md-2 col-sm-2 manage-wid manage-fat">
<input type="text" class="form-control" name="" id="selectMonth" readonly="readonly" onclick="WdatePicker({dateFmt: 'yyyy-MM', el:'selectMonth'})" placeholder="请选择日期" onchange="selectMonth_onchange()" >
</div>
<button class="btn manage-btn col-md-1 check-search" type="button" onclick="refreshAttendanceList()">
查询
</button> <input type="file" name="fileSelectName" id="fileSelect" onchange="uploadAction()" style="filter:alpha(opacity=0);opacity:0;width: 0;height: 0;"/>
<button class="btn manage-btn att-check-btn check-search" style="width: 130px;" type="button" onclick="importAction()">
导入打卡记录
</button> <!-- 假装点击 -->
<a id="export_a_id" href="${ctx}/oa/attendance/export.do?dateStirng=2015-12-21" >
<button class="btn manage-btn att-check-btn check-search" style="width: 130px;" type="button">
导出考勤
</button>
</a>
</div>
点击按钮的时候实际上是通过点击 <a href 去实现的.
在日期选择框中添加了onchange()事件
js代码:
/**
* 日期选择变化的时候,更新a标签里的超链接地址
* @returns
*/
function selectMonth_onchange() {
var dateString = $("#selectMonth").val();
var url = yyoa_context + '/oa/attendance/export.do?dateString=' + dateString;
var export_a = $("#export_a_id");
export_a.attr("href", url);
}
export.do 的 controller层代码, 目前这里只能用get方式,不能用post 方式.
@ResponseBody
@RequestMapping(value = "/export", method = RequestMethod.GET)
public void export(String dateString, HttpServletRequest request, HttpServletResponse response) {
try {
Date date = null;
if (dateString.length() == 0) {
date = new Date();
} else if (dateString.length() < 10) {
dateString += "-01";
date = DateUtil.str2Date(dateString, DateUtil.DEFAULT_DATE_FORMAT);
}
String tmpDateString = DateUtil.date2Str(date, "yyyy-MM");
String fileName = tmpDateString + "-records" + ".xls";
String filePath = this.getClass().getClassLoader().getResource("tmp").getPath() + fileName; // 获取考勤数据
List<AttendanceExtend> attendanceExtends = this.attendanceService.selectAttendanceByDate(date);
// 得到excel对象
HSSFWorkbook workbook = this.attendanceService.setExportExcelTemplate(attendanceExtends);
// 写文件到服务器路径
FileOutputStream out = new FileOutputStream(filePath);
workbook.write(out);
out.flush();
out.close(); // 下载文件
response.setCharacterEncoding("utf-8");
response.setContentType("multipart/form-data");
response.setHeader("Content-Disposition", "attachment;fileName=" + fileName);
InputStream inputStream = new FileInputStream(new File(filePath));
OutputStream os = response.getOutputStream();
byte[] b = new byte[2048];
int length;
while ((length = inputStream.read(b)) > 0) {
os.write(b, 0, length);
}
os.close();
inputStream.close();
} catch (Exception exception) {
}
}
这样就可以直接下载了.
jsp,jquery,spring mvc 实现导出文件的更多相关文章
- SSM框架中前端页面(AJAX+Jquery+spring mvc+bootstrap)
前端新增页面的模态框,采用bootstarp建立.定义了empName,email,gender,depatName,四个属性的ID:其中保存按钮的ID:emp_save_btn,对应的点击函数如下: ...
- jsp与spring mvc后台controller间参数传递处理之总结
在编程过程中,最容易出现问题及卡壳的地方,往往是各层之间接缝处,接缝处往往存在着各种各样的参数传递,数据转换和格式化,参数很好的传递并正确接收过来之后就是复杂逻辑之间的处理了,所以为了避免多种问题占用 ...
- JSP、Servlet和Spring MVC
感谢原博主!!!https://blog.csdn.net/whut2010hj/article/details/80874008 版权声明:本文为博主原创文章,遵循CC 4.0 BY版权协议,转载请 ...
- Spring MVC教程——检视阅读
Spring MVC教程--检视阅读 参考 Spring MVC教程--一点--蓝本 Spring MVC教程--c语言中午网--3.0版本太老了 Spring MVC教程--易百--4.0版本不是通 ...
- Spring MVC新手教程(二)
第一篇文章宏观讲了Spring MVC概念,以及分享了一个高速入门的样例. 这篇文章主要来谈谈Spring MVC的配置文件. 首先来谈谈web.xml: web项目启动时自己主动载入到内存中的信息, ...
- Spring MVC概述
Spring MVC框架是一个开源的Java平台,为开发强大的基于Java的Web应用程序提供全面的基础架构支持非常容易和非常快速. Spring框架最初由Rod Johnson撰写,并于2003年6 ...
- spring mvc: 多动作控制器(Controller下面实现多个访问的方法)MultiActionController / BeanNameUrlHandlerMapping
spring mvc: 多动作控制器(Controller下面实现多个访问的方法) 比如我的控制器是UserController.java,下面有home, add, remove等多个方法 访问地址 ...
- Spring MVC Web.xml配置
Web.xml spring&spring mvc 在web.xml中定义contextConfigLocation参数,Spring会使用这个参数去加载所有逗号分隔的xml文件,如果没有这个 ...
- Spring MVC例子
学习Spring MVC的一个例子,参考书籍<Servlet.JSP.Spring MVC学习指南>,简单总结一下. 代码下载:https://github.com/PeiranZhang ...
随机推荐
- 【Spark2.0源码学习】-4.Master启动
Master作为Endpoint的具体实例,下面我们介绍一下Master启动以及OnStart指令后的相关工作 一.脚本概览 下面是一个举例: /opt/jdk1..0_79/ ...
- 【原创】bootstrap框架的学习 第七课 -[bootstrap表格]
Bootstrap 表格 标签 描述 <table> 为表格添加基础样式. <thead> 表格标题行的容器元素(<tr>),用来标识表格列. <tbody& ...
- Android 如何本地加载pdf文件
大部分app打开pdf文件是通过intent调起手机中能打开pdf文件的工具,来查看pdf文件,如果需求是,用户在app内下载好pdf文件后,不通过第三方的工具,本地打开. 这样的需求要怎么实现呢?上 ...
- linux内核Makefile整体分析
转自:http://www.cnblogs.com/amanlikethis/p/3675486.html <请阅读原文> 一.概述 1.本文的意义 众多的资料(<嵌入式Linux应 ...
- Measuring & Optimizing I/O Performance
By Ilya Grigorik on June 23, 2009 Measuring and optimizing IO performance is somewhat of a black art ...
- CentOS 7安装Docker
在虚拟机CentOS 7上安装Docker ## 零:检查前提条件: 在Red Hat 和Red Hat系列的Linux发行版中,安装Docker所需的前提提交并不多. ### 1.内 ...
- 【lucene系列学习】排序
用lucene3实现搜索多字段并排序功能(设置权重)
- Transform java future into completable future 【将 future 转成 completable future】
Future is introduced in JDK 1.5 by Doug Lea to represent "the result of an asynchronous computa ...
- leetcode contest 20
Q1: 520. Detect Capital Given a word, you need to judge whether the usage of capitals in it is right ...
- Python基本语法--语句
# -*- coding: utf-8 -*- #条件语句 ''' if 判断条件: 执行语句…… else: 执行语句…… ''' flag = False name = 'python' if n ...