一、前台实现:

1. HTML:

<div>
  <a href="javascript:void(0);" class="btnStyleLeft">
<span class="fa fa-external-link" onclick="test.exportGridData()">导出</span>
  </a>
</div>

2.js:

/*导出查询记录到本地下载目录*/
exportGridData: function(type) {
var exportIFrame = document.createElement("iframe");
exportIFrame.src = "/ipeg-web/requestDispatcher?" + exportParams.join("&"); // exportParams带入需要传至后台的参数
exportIFrame.style.display = "none";
document.body.appendChild(exportIFrame);
},

 

二、后台实现:

 1、ExtensionMode枚举---用于csv/txt/excel2003/excel2007文件的写入

import com.csvreader.CsvWriter;
import com.google.common.base.Charsets;
import com.google.common.base.Joiner;
import com.google.common.base.Preconditions;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.usermodel.HSSFFont;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.io.IOException;
import java.io.OutputStream;
import java.util.List; public enum ExtensionMode {
TXT(".txt", "application/octet-stream") {
@Override
public void write(List<String[]> lines, String[] header, OutputStream outputStream) throws IOException {
checkNotNull(lines, header, outputStream);
final String headerString = Joiner.on(",").useForNull("").join(header);
outputStream.write((headerString + "\r\n").getBytes(Charsets.UTF_8));
for (String[] parts : lines) {
final String line = Joiner.on(",").useForNull("").join(parts);
outputStream.write((line + "\r\n").getBytes(Charsets.UTF_8));
}
}
},
CSV(".csv", "application/octet-stream") {
@Override
public void write(List<String[]> lines, String[] header, OutputStream outputStream) throws IOException {
checkNotNull(lines, header, outputStream);
final CsvWriter csvWriter = new CsvWriter(outputStream, ',', Charsets.UTF_8);
try {
csvWriter.writeRecord(header);
for (String[] parts : lines) {
csvWriter.writeRecord(parts);
}
csvWriter.flush();
} finally {
csvWriter.close();
}
}
},
EXCEL2003(".xls", "application/vnd.ms-excel") {
@Override
public void write(List<String[]> lines, String[] header, OutputStream outputStream) throws IOException {
checkNotNull(lines, header, outputStream);
final Workbook workbook = new ExcelMaker() {
@Override
protected Workbook createWorkbook() {
return new HSSFWorkbook();
}
}.make(lines, header);
workbook.write(outputStream);
}
},
EXCEL2007(".xlsx", "application/vnd.ms-excel") {
@Override
public void write(List<String[]> lines, String[] header, OutputStream outputStream) throws IOException {
checkNotNull(lines, header, outputStream);
final Workbook workbook = new ExcelMaker() {
@Override
protected Workbook createWorkbook() {
return new XSSFWorkbook();
}
}.make(lines, header);
workbook.write(outputStream);
}
};
private static void checkNotNull(List<String[]> lines, String[] header, OutputStream outputStream) {
Preconditions.checkNotNull(lines, "null list for write");
Preconditions.checkNotNull(header, "null header");
Preconditions.checkNotNull(outputStream, "null output stream ");
}
private final String suffix;
private final String contentType; ExtensionMode(String suffix, String contentType) {
this.suffix = suffix;
this.contentType = contentType;
} public String getSuffix() {
return suffix;
} public String getContentType() {
return contentType;
} public static ExtensionMode getExtensionModeBySuffix(String suffix) {
for (ExtensionMode mode : ExtensionMode.values()) {
if (mode.getSuffix().equalsIgnoreCase(suffix))
return mode;
}
throw new IllegalArgumentException("Unknown File Type.");
} public abstract void write(List<String[]> lines, String[] header, OutputStream outputStream)
throws IOException; private abstract static class ExcelMaker {
public Workbook make(List<String[]> lines, String[] header) {
Workbook wb = createWorkbook();
Sheet sheet = wb.createSheet("数据源");
// 创建格式
CellStyle cellStyle = getCellStyle(wb);
// 添加第一行标题
addHeader(header, sheet, cellStyle);
// 从第二行开始写入数据
addData(lines, sheet, cellStyle);
return wb;
} private void addData(List<String[]> lines, Sheet sheet, CellStyle cellStyle) {
for (int sn = 0; sn < lines.size(); sn++) {
String[] col = lines.get(sn);
Row row = sheet.createRow(sn + 1);
for (int cols = 0; cols < col.length; cols++) {
Cell cell = row.createCell(cols);
cell.setCellStyle(cellStyle);
cell.setCellType(XSSFCell.CELL_TYPE_STRING);
cell.setCellValue(col[cols]);
}
}
} private CellStyle getCellStyle(Workbook wb) {
Font font = wb.createFont();
font.setColor(HSSFFont.COLOR_NORMAL);
font.setBoldweight(HSSFFont.BOLDWEIGHT_NORMAL);
CellStyle cellStyle = wb.createCellStyle();
cellStyle.setFont(font);
cellStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);
cellStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
return cellStyle;
} private void addHeader(String[] header, Sheet sheet, CellStyle cellStyle) {
Row titleRow = sheet.createRow(0);
// 创建第1行标题单元格
for (int i = 0, size = header.length; i < size; i++) {
switch (i) {
case 5:
case 7:
sheet.setColumnWidth(i, 10000);
break;
default:
sheet.setColumnWidth(i, 3500);
break;
}
Cell cell = titleRow.createCell(i, 0);
cell.setCellStyle(cellStyle);
cell.setCellType(XSSFCell.CELL_TYPE_STRING);
cell.setCellValue(header[i]);
}
}
protected abstract Workbook createWorkbook();
}
}

2. dataExport:具体的数据导出

public class dataExport {
private final byte[] UTF_BOM = new byte[]{(byte) 0xEF, (byte) 0xBB, (byte) 0xBF};
private final String[] header = new String[]{"user", "name", "id"};
List logData = null;
OutputStream outputStream = null;

  outputStream = response.getOutputStream();
try {
export(ExtensionMode.CSV, header, getUserData(logData), outputStream);
} catch (IOException e) {
e.printStackTrace();
}finally{
if (outputStream != null)
{
try
{
outputStream.close();
}
catch (Exception e)
{
e.printStackTrace();
}
}
} private void export(ExtensionMode extensionMode, String[] header, ImmutableList<String[]> lines,
OutputStream outputStream) throws IOException {
response.setContentType(extensionMode.getContentType() + ";charset=UTF-8");
response.reset();
response.setHeader("Content-Disposition", "attachment; filename="
+ URLEncoder.encode(getFileName(extensionMode.getSuffix()), "UTF-8")); if (extensionMode == ExtensionMode.CSV) {
outputStream.write(UTF_BOM); //防止中文乱码
}
extensionMode.write(lines, header, outputStream);
outputStream.flush();
} private String getFileName(String extension) {
SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss");
return format.format(new Date()) + extension;
} public ImmutableList<String[]> getUserData(List<UserEntity> data) {
return from(data).transform(new userDataFunction()).toList();
} private class userDataFunction implements Function<UserEntity, String[]> {
@Override
public String[] apply(UserEntity input) {
return new String[]{
input.getName(),
input.getUser(),
input.getId()
};
}
}
}

3.需要添加的maven依赖如下:

<dependency>
<groupId>net.sf.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>1.8</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.9</version>
</dependency>
<dependency>
<groupId>org.apache.poi-ooxml</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.7</version>
</dependency>

三、效果图如下:

  

生成csv格式文件并导出至页面的前后台实现的更多相关文章

  1. java导出csv格式文件

    导出csv格式文件的本质是导出以逗号为分隔的文本数据 import java.io.BufferedWriter; import java.io.File; import java.io.FileIn ...

  2. 导出CSV格式文件,用Excel打开乱码的解决办法

    导出CSV格式文件,用Excel打开乱码的解决办法 1.治标不治本的办法 将导出CSV数据文件用记事本打开,然后另存为"ANSI"编码格式,再用Excel打开,乱码解决. 但是,这 ...

  3. MYSQL导入CSV格式文件数据执行提示错误(ERROR 1290): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement.

    MYSQL导入CSV格式文件数据执行提示错误(ERROR 1290): The MySQL server is running with the --secure-file-priv option s ...

  4. 如何将EDI报文转换为CSV格式文件?

    如果您对EDI项目实施有一定的了解,想必您一定知道,在正式开始EDI项目实施之前,都会有EDI顾问与您接洽,沟通EDI项目需求.其中,会包含EDI通信双方使用哪种传输协议,传输的报文是符合什么标准的, ...

  5. Python数据写入csv格式文件

    (只是传递,基础知识也是根基) Python读取数据,并存入Excel打开的CSV格式文件内! 这里需要用到bs4,csv,codecs,os模块. 废话不多说,直接写代码!该重要的内容都已经注释了, ...

  6. 生成Csv格式的字符串

    using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using Sy ...

  7. weka数据挖掘拾遗(一)---- 生成Arff格式文件

    一.什么是arff格式文件 1.arff是Attribute-Relation File Format缩写,从英文字面也能大概看出什么意思.它是weka数据挖掘开源程序使用的一种文件模式.由于weka ...

  8. python3 库pandas写入csv格式文件出现中文乱码问题解决方法

    python3 库pandas写入csv格式文件出现中文乱码问题解决方法 解决方案: 问题是使用pandas的DataFrame的to_csv方法实现csv文件输出,但是遇到中文乱码问题,已验证的正确 ...

  9. 使用Spark读写CSV格式文件(转)

    原文链接:使用Spark读写CSV格式文件 CSV格式的文件也称为逗号分隔值(Comma-Separated Values,CSV,有时也称为字符分隔值,因为分隔字符也可以不是逗号.在本文中的CSV格 ...

随机推荐

  1. sqlserver 重置标识列

    重置标识信息:DBCC CHECKIDENT('表名', RESEED,0) 检查标识信息:DBCC CHECKIDENT('SysModule', NORESEED)

  2. Codeforces Round #336 (Div. 2)-608A.水题 608B.前缀和

    A题和B题...   A. Saitama Destroys Hotel time limit per test 1 second memory limit per test 256 megabyte ...

  3. TypeScript笔记 5--变量声明(解构和展开)

    解构是什么 解构(destructuring assignment)是一种表达式,将数组或者对象中的数据赋给另一变量. 在开发过程中,我们经常遇到这样问题,需要将对象某个属性的值赋给其它两个变量.代码 ...

  4. 微信小程序:微信登陆(ThinkPHP作后台)

      https://www.jianshu.com/p/340b1ba5245e QQ截图20170320170136.png 微信小程序官方给了十分详细的登陆时序图,当然为了安全着想,应该加上签名加 ...

  5. HTML 5 video 视频标签全属性详解

    http://www.cnblogs.com/kiter/archive/2013/02/25/2932157.html 现在如果要在页面中使用video标签,需要考虑三种情况,支持Ogg Theor ...

  6. 谷歌扩展程序设置ajax请求允许跨域(极少人知道的解决方案)

    前言: 跨域问题一直是个老生常谈的问题,在实际开发过程中,跨域的问题常常会让开发者非常的头疼. 常用的几种跨域解决方案: 1.代理 2.XHR2 HTML5中提供的XMLHTTPREQUEST Lev ...

  7. intent详解(一)

    摘录自:http://blog.csdn.net/harvic880925/article/details/38399723 前言:通过重新翻看Android入门书籍,才发现原来自己露掉了那么多基础知 ...

  8. Jquery如何删除table里面checkbox选中的多个行

    思路:遍历被选中的checkbox对象→根据选中项筛选出需要删除的行→删除行.实例说明如下: 1.HTML结构 <table id = "test_table"> &l ...

  9. Java数据持久层框架 MyBatis之API学习一(简介)

    对于MyBatis的学习而言,最好去MyBatis的官方文档:http://www.mybatis.org/mybatis-3/zh/index.html 对于语言的学习而言,马上上手去编程,多多练习 ...

  10. vim编辑操作

    vim    插入模式        a    光标后        A    行尾        o    光标所在行下一行        O    光标所在行上一行        i    光标前 ...