博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
execl导入导出
阅读量:5149 次
发布时间:2019-06-13

本文共 583 字,大约阅读时间需要 1 分钟。

1.导出:

response.setContentType("application/vnd.ms-excel; charset=utf-8");response.setHeader("Content-Disposition","attachment;filename=" + new String(execlName.getBytes("gb2312"), "ISO8859-1"));response.setCharacterEncoding("utf-8");OutputStream os=response.getOutputStream();//获得Execl表格HSSFWorkbook wb = doExport(datas,titles,sheetName);//写入流wb.write(os);os.flush();//关闭流os.close();String path = "C:/Users/chencq3/Desktop/billList.xls";FileOutputStream fileOut = new FileOutputStream(path);   wb.write(fileOut);   fileOut.close();

 

转载于:https://www.cnblogs.com/kingxing/p/6423423.html

你可能感兴趣的文章
win7 64位机ODBC的数据源DSN添加和移除问题
查看>>
一个不错的逻辑回归的实例
查看>>
Python第一天
查看>>
css position
查看>>
【bzoj2788】Festival
查看>>
执行gem install dryrun错误
查看>>
Java SE之正则表达式一:概述
查看>>
广义表
查看>>
HTML5简单入门系列(四)
查看>>
AndroidStudio快捷键
查看>>
c++并发编程之原子操作的实现原理
查看>>
实现字符串反转
查看>>
Rotate Image
查看>>
WPF combobox 圆角制作
查看>>
转载:《TypeScript 中文入门教程》 5、命名空间和模块
查看>>
时间复杂度的计算
查看>>
苹果开发中常用英语单词
查看>>
MSSQL2005约束(三)-外键约束
查看>>
ubuntu下单网卡绑定多个IP
查看>>
[USACO 1.4.3]等差数列
查看>>