• spring mvc导出csv案例


    1、controller 导出

        @RequestMapping(value = "/exportCSV", method = RequestMethod.GET, produces = "text/html;charset=UTF-8")
        @ResponseBody
        public void exportCSV(HttpServletRequest request, HttpServletResponse response) {
            Gson gson = new Gson(); 
            try {
                 // 读取字符编码
                String utf = "UTF-8";
                String fileName = "标签查询记录";
                String fn = fileName + ".csv";
                Movie m = new Movie();
                m.setLimit(50);
                m.setOffset(0);
               
                List<Movie> movies = movieService.query(m);
            
                
                 // 设置响应
                response.setContentType("application/csv;charset=GBK");  
                response.setCharacterEncoding(utf);
                response.setHeader("Pragma", "public");
                response.setHeader("Cache-Control", "max-age=30");
                response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode(fn, utf));
                OutputStream os = response.getOutputStream();
                ExportUtil.doExport(movies, os);
                os.close();
                
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

    2、ExportUtil

    package com.hyc.www.utils;
    import java.io.OutputStream; import java.util.List; import com.hyc.www.pojo.Movie; public class ExportUtil { /** CSV文件列分隔符 */ private static final String CSV_COLUMN_SEPARATOR = ","; /** CSV文件列分隔符 */ private static final String CSV_RN = " "; public static boolean doExport(List<Movie> dataList, OutputStream os) { try { StringBuffer buf = new StringBuffer(); buf.append("电影名").append(CSV_COLUMN_SEPARATOR); buf.append("导员").append(CSV_COLUMN_SEPARATOR); buf.append("语言").append(CSV_COLUMN_SEPARATOR); buf.append("开放时间").append(CSV_COLUMN_SEPARATOR); buf.append(CSV_RN); if (null != dataList) { // 输出数据 for (int i = 0; i < dataList.size(); i++) { Movie m = dataList.get(i); buf.append(m.getName()).append(CSV_COLUMN_SEPARATOR); buf.append(m.getDirector()).append(CSV_COLUMN_SEPARATOR); buf.append(m.getLanguage()).append(CSV_COLUMN_SEPARATOR); buf.append(m.getOpenday()).append(CSV_COLUMN_SEPARATOR); buf.append(CSV_RN); } } // 写出响应 os.write(buf.toString().getBytes("GBK")); os.flush(); return true; } catch (Exception e) { // logger.error("doExport错误...", e); } return false; } }
  • 相关阅读:
    神经网络训练收敛的解决办法
    minSdkVersion
    onlyoffice使用
    linux系统磁盘不足处理方法
    编辑docker容器中的文件
    如何使用Java获取上传图片需要旋转的角度且获取正确方向的图片
    Java数据类型转换
    bat脚本实现jdk安装、环境变量添加及jar包运行
    java实现文件上传接口及java调用文件上传接口
    flutter常用问题查询
  • 原文地址:https://www.cnblogs.com/zoro-zero/p/14731418.html
Copyright © 2020-2023  润新知