java导出excel 浏览器直接下载或者或以文件形式导出

 更新时间:2021年06月10日 09:16:25   作者:低调的小白  
这篇文章主要介绍了java导出excel 浏览器直接下载或者或以文件形式导出方式,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

看代码吧~

/**
 * excel表格直接下载
 */
public static void exportExcelByDownload(HSSFWorkbook wb,HttpServletResponse httpServletResponse,String fileName) throws Exception {
    //响应类型为application/octet- stream情况下使用了这个头信息的话,那就意味着不想直接显示内容
    httpServletResponse.setContentType(MediaType.APPLICATION_OCTET_STREAM_VALUE);
    //attachment为以附件方式下载
    httpServletResponse.setHeader("Content-Disposition","attachment;filename=" + URLEncoder.encode(
            fileName + ".xls",
            "utf-8"));
    /**
     * 代码里面使用Content-Disposition来确保浏览器弹出下载对话框的时候。
     * response.addHeader("Content-Disposition","attachment");一定要确保没有做过关于禁止浏览器缓存的操作
     */
    httpServletResponse.setHeader("Cache-Control", "No-cache");
    httpServletResponse.flushBuffer();
    wb.write(httpServletResponse.getOutputStream());
    wb.close();
}
/**
 * excel以文件的形式导出
 * @throws Exception
 */
public static void exportExcelByFile(HSSFWorkbook wb,String fileName,String path) throws Exception{
    ByteArrayOutputStream stream = new ByteArrayOutputStream();
    wb.write(stream);
    FileOutputStream outputStream = new FileOutputStream(path + fileName);
    outputStream.write(stream.toByteArray());
    stream.close();
    outputStream.close();
}

java查询数据导出excel并返回给浏览器下载

效果图:

1.点击导出表按钮

2.接着就会出现下图

3.点击上图中的确定按钮再接着就会出现下图

4.点击上图中的保存按钮接着就会出现下图,浏览器下载完成后的提示

5.打开下载好的文件如下图

好了,废话不多少,上代码

jsp前端代码

<div style="height:30px;">
	<a>时间:</a>
        <input id="startDateConsume" type="text" class="easyui-datebox"> <a>-</a>
        <input id="endDateConsume" type="text" class="easyui-datebox">
        <a>消费类型:</a>
       <select id="consumesType" name="">
	<option value="0" selected="selected">所有</option>
	<option value="1">报名费</option>
	<option value="2">酒水零食类</option>
	</select>
        <a>支付状态:</a>
       <select id="conPaymentStatus" name="">
	<option value="0" selected="selected">所有</option>
	<option value="1">未支付</option>
	<option value="2">已支付</option>
	</select>
        <a id="btnConsumesSearch" class="easyui-linkbutton"
	data-options="iconCls:'icon-search'" style="margin-left:10px">查询</a><a>(查询出来的数据可统计)</a>
	<a id="consumesOutExcel" class="easyui-linkbutton" style="" data-options="iconCls:'icon-redo'">导出表</a>
</div>

js前端代码

$(function() {
	//导出excel表
	$('#consumesOutExcel').on('click',function(){					
		exportExcel();
	});
});
 
function exportExcel() {
		$.messager.confirm('确认', '确认把该搜索结果导出Excel表格 ?', function(r) {
		if (r) {
			var startTime = $('#startDateConsume').val();
			var endTime = $('#endDateConsume').val();
			var consumesType = $('#consumesType').val();
			var conPaymentStatus = $('#conPaymentStatus').val();
			$.messager.progress({
				title : '处理中',
				msg : '请稍后',
			});
			$.messager.progress('close');
			location.href="web/vip/exportExcel.xlsx?startTime=" rel="external nofollow" +startTime+"&endTime="+endTime+"&consumesType="+consumesType+"&conPaymentStatus="+conPaymentStatus;
		}
	}); 
} 

java后端代码

@Controller
@RequestMapping("/vip")
public class VipController {
	//文件下载:导出excel表
	@RequestMapping(value = "/exportExcel.xlsx",method = RequestMethod.GET)
	@ResponseBody
	public void exportExcel(HttpServletRequest request,HttpServletResponse response) throws UnsupportedEncodingException{
		//一、从后台拿数据
			if (null == request || null == response)
			{
				return;
			}
			List<VipConsumes> list = null;
			String startTime = request.getParameter("startTime");
			String endTime = request.getParameter("endTime");
			int consumesType = Integer.parseInt(request.getParameter("consumesType"));
			int conPaymentStatus =Integer.parseInt(request.getParameter("conPaymentStatus"));
 
			VipConsumesExample example = new VipConsumesExample();
			if(consumesType!=0 && conPaymentStatus!=0){
				example.createCriteria().andTimeBetween(startTime, endTime).andConsumeTypeEqualTo(consumesType).andStatusEqualTo(conPaymentStatus);
			}else if(consumesType ==0 && conPaymentStatus!=0) {
				example.createCriteria().andTimeBetween(startTime, endTime).andStatusEqualTo(conPaymentStatus);
			}else if(consumesType!=0 && conPaymentStatus==0){
				example.createCriteria().andTimeBetween(startTime, endTime).andConsumeTypeEqualTo(consumesType);
			}else {
				example.createCriteria().andTimeBetween(startTime, endTime);
			}
            list = this.vipConsumesDao.selectByExample(example);
			//二、 数据转成excel
    		request.setCharacterEncoding("UTF-8");
    		response.setCharacterEncoding("UTF-8");
    		response.setContentType("application/x-download");
 
    		String fileName = "消费记录.xlsx";
    		fileName = URLEncoder.encode(fileName, "UTF-8");
    		response.addHeader("Content-Disposition", "attachment;filename=" + fileName);
            // 第一步:定义一个新的工作簿
    		XSSFWorkbook wb = new XSSFWorkbook();
    		// 第二步:创建一个Sheet页
    		XSSFSheet sheet = wb.createSheet("startTimeendTime");
    		sheet.setDefaultRowHeight((short) (2 * 256));//设置行高
    		sheet.setColumnWidth(0, 4000);//设置列宽
    		sheet.setColumnWidth(1,5500);
    		sheet.setColumnWidth(2,5500);
    		sheet.setColumnWidth(3,5500);
    		sheet.setColumnWidth(11,3000);
    		sheet.setColumnWidth(12,3000);
    		sheet.setColumnWidth(13,3000);
    		XSSFFont font = wb.createFont();
    		font.setFontName("宋体");
    		font.setFontHeightInPoints((short) 16);
    		
    		XSSFRow row = sheet.createRow(0);
    		XSSFCell cell = row.createCell(0);
    		cell.setCellValue("流水号 ");
    		cell = row.createCell(1);
    		cell.setCellValue("微信名 ");
    		cell = row.createCell(2);
    		cell.setCellValue("微信订单号");
    		cell = row.createCell(3);
    		cell.setCellValue("消费时间");
    		cell = row.createCell(4);
    		cell.setCellValue("消费类型");
    		cell = row.createCell(5);
    		cell.setCellValue("剩余积分 ");
    		cell = row.createCell(6);
    		cell.setCellValue("新增积分 ");
    		cell = row.createCell(7);
    		cell.setCellValue("扣除积分 ");
    		cell = row.createCell(8);
    		cell.setCellValue("消费金额");
    		cell = row.createCell(9);
    		cell.setCellValue("支付方式");
    		cell = row.createCell(10);
    		cell.setCellValue("支付状态 ");
    		cell = row.createCell(11);
    		cell.setCellValue("钱包原始金额");
    		cell = row.createCell(12);
    		cell.setCellValue("钱包扣除金额");
    		cell = row.createCell(13);
    		cell.setCellValue("钱包剩余金额");
    		
    		XSSFRow rows;
    		XSSFCell cells;
    		for (int i = 0; i < list.size(); i++) {
    			// 第三步:在这个sheet页里创建一行
    			rows = sheet.createRow(i+1);
    			// 第四步:在该行创建一个单元格
    			cells = rows.createCell(0);
    			// 第五步:在该单元格里设置值
    			cells.setCellValue(list.get(i).getConsumeId());
    			
    			cells = rows.createCell(1);
    			cells.setCellValue(list.get(i).getName());
    			cells = rows.createCell(2);
    			cells.setCellValue(list.get(i).getOrderNumber());
    			cells = rows.createCell(3);
    			cells.setCellValue(list.get(i).getTime());
    			cells = rows.createCell(4);
    			if (list.get(i).getConsumeType() == 2) {
    				cells.setCellValue("酒水零食费");
 
    			} else {
    				cells.setCellValue("报名费");
    			}
    			cells = rows.createCell(5);
    			cells.setCellValue(list.get(i).getIntegral());
    			cells = rows.createCell(6);
    			cells.setCellValue(list.get(i).getIntegralIn());
    			cells = rows.createCell(7);
    			cells.setCellValue(list.get(i).getIntegralOut());
    			cells = rows.createCell(8);
    			cells.setCellValue(list.get(i).getMoney());
    			cells = rows.createCell(9);
    			if (list.get(i).getPayment() == 2) {
    				cells.setCellValue("积分抵现");
    			} else if (list.get(i).getPayment() == 3) {
    				cells.setCellValue("微信支付");
    			} else if (list.get(i).getPayment() == 4) {
    				cells.setCellValue("现金");
    			} else if (list.get(i).getPayment() == 1) {
    				cells.setCellValue("钱包");
    			}
    			cells = rows.createCell(10);
    			if (list.get(i).getStatus() == 2) {
    				cells.setCellValue("已支付");
    			} else if (list.get(i).getStatus() == 1) {
    				cells.setCellValue("未支付");
    			}
    			cells = rows.createCell(11);
    			cells.setCellValue(list.get(i).getWalletOriginal());
    			cells = rows.createCell(12);
    			cells.setCellValue(list.get(i).getWalletOut());
    			cells = rows.createCell(13);
    			cells.setCellValue(list.get(i).getWalletSurplus());
    		}
    			
				try {
					OutputStream out = response.getOutputStream();
	    			wb.write(out);
	    			out.close();
	    			wb.close();
				} catch (IOException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
 
	}
}

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

相关文章

  • IDEA 2021.2 激活教程及启动报错问题解决方法

    IDEA 2021.2 激活教程及启动报错问题解决方法

    这篇文章主要介绍了IDEA 2021.2 启动报错及激活教程,文章开头给大家介绍了idea2021最新激活方法,关于idea2021启动报错的问题小编也给大家介绍的非常详细,需要的朋友可以参考下
    2021-10-10
  • Java动态代理Proxy应用和底层源码详细分析

    Java动态代理Proxy应用和底层源码详细分析

    Java动态代理是一种在运行时生成代理类的机制,用于代替手动编写代理类的过程,这篇文章主要给大家介绍了关于Java动态代理Proxy应用和底层源码详细分析的相关资料,需要的朋友可以参考下
    2024-03-03
  • java实现163邮箱发送邮件到qq邮箱成功案例

    java实现163邮箱发送邮件到qq邮箱成功案例

    这篇文章主要为大家分享了java实现163邮箱发送邮件到qq邮箱成功案例,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-05-05
  • Java生成word文档的示例详解

    Java生成word文档的示例详解

    这篇文章主要为大家详细介绍了如何利用Java语言生成word文档,文中的示例代码讲解详细,具有一定的借鉴价值,需要的小伙伴可以参考一下
    2022-12-12
  • Java序列化和反序列化示例介绍

    Java序列化和反序列化示例介绍

    大家好,本篇文章主要讲的是Java序列化和反序列化示例介绍,感兴趣的同学赶快来看一看吧,对你有帮助的话记得收藏一下,方便下次浏览
    2022-01-01
  • Spring Security实现两周内自动登录

    Spring Security实现两周内自动登录"记住我"功能

    登录过程中经常使用的“记住我”功能,也就是我们经常会在各种网站登陆时见到的"两周内免登录",“三天内免登录”的功能。今天小编给大家分享基于Spring Security实现两周内自动登录"记住我"功能,感兴趣的朋友一起看看吧
    2019-11-11
  • Java代码精简之道(推荐)

    Java代码精简之道(推荐)

    这篇文章主要给大家介绍了Java代码精简之道,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-11-11
  • 深入剖析springBoot中的@Scheduled执行原理

    深入剖析springBoot中的@Scheduled执行原理

    这篇文章主要介绍了springBoot中的@Scheduled执行原理,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2021-11-11
  • java实现OpenGL ES纹理映射的方法

    java实现OpenGL ES纹理映射的方法

    这篇文章主要介绍了java实现OpenGL ES纹理映射的方法,以实例形式较为详细的分析了纹理映射的实现技巧,需要的朋友可以参考下
    2015-06-06
  • 基于Transactional事务的使用以及注意说明

    基于Transactional事务的使用以及注意说明

    这篇文章主要介绍了Transactional事务的使用以及注意说明,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2021-07-07

最新评论