bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

excel導出的方法有哪些

這篇文章主要介紹“excel導出的方法有哪些”,在日常操作中,相信很多人在excel導出的方法有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”excel導出的方法有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

創新互聯公司堅持“要么做到,要么別承諾”的工作理念,服務領域包括:成都網站設計、做網站、企業官網、英文網站、手機端網站、網站推廣等服務,滿足客戶于互聯網時代的白城網站設計、移動媒體設計的需求,幫助企業找到有效的互聯網解決方案。努力成為您成熟可靠的網絡建設合作伙伴!

1、前端 JS導出excel

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     <title>haha</title>
	<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script>
    <script type="text/javascript" language="javascript">
        $(document).ready(function () {
            jQuery.support.cors = true;

            $('#JQuery_AJAX_Test').click(function () {
              $.ajax({
                     type: "POST",
                     url: "http://localhost:18067/manage/orders/export",
					 xhrFields: { responseType: "blob" }, //關鍵代碼
                     data: "{\"batchExport\":true}",
                     contentType:"application/json",
					 beforeSend: function(request) {
						request.setRequestHeader("Authorization","5640edc3-49d3-435d-909e-daea076e6890");
					 },
                     success: function(retData){
						dl(retData, "abc.xlsx");
                     },
					 error: function(e) {
						alert(e.toString());
					 }
                     });
            });
        });
		
		function dl(data, fileName) {
		 if (!data) {
		   return
		 }
		 let url = window.URL.createObjectURL(new Blob([data]))
		 let link = document.createElement('a');
		 link.style.display = 'none';
		 link.href = url;
		 link.setAttribute('download', fileName);
		 document.body.appendChild(link);
		 link.click();
		}
    </script>
</head>
<body> 
    <a href="#" id="JQuery_AJAX_Test">JQuery AJAX Test</a><br/>
    <div id="result"></div>
</body>
</html>

2、服務端代碼

import cn.hutool.core.util.URLUtil;
import cn.hutool.poi.excel.ExcelReader;
import cn.hutool.poi.excel.ExcelUtil;
import cn.hutool.poi.excel.ExcelWriter;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.apache.poi.xssf.streaming.SXSSFSheet;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletResponse;
import java.io.File;
import java.io.IOException;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.List;
import java.util.Map;
import java.util.Objects;

/**
 * Description ExcelHelper
 * Date 2021/3/25 11:43
 *
 * @author by mays
 */
@Slf4j
public class ExcelHelper {

    /**
     *
     * @param response response
     * @param rows rows
     * @param headerAlias headerAlias
     * @throws IOException IOException
     */
    public static void excelWriter(HttpServletResponse response,
                                   //List<Map<String, Object>> rows,
                                   List<Object> rows,
                                   Map<String, String> headerAlias) throws IOException {
        String fileName = URLUtil.encode(String.format("tmp-%s.xlsx", LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyyMMddHHmmssSSS"))));
        ExcelWriter excelWriter = ExcelUtil.getBigWriter();
        excelWriter.setHeaderAlias(headerAlias);

        // 一次性寫出內容,使用默認樣式,強制輸出標題
        excelWriter.write(rows, true);

        // 設置所有列為自動寬度,不考慮合并單元格
        SXSSFSheet sheet = (SXSSFSheet) excelWriter.getSheet();
        sheet.trackAllColumnsForAutoSizing();
        excelWriter.autoSizeColumnAll();

        //response設置excel類型
        response.setHeader("Access-Control-Expose-Headers", "Content-Disposition");
        response.setContentType("application/vnd.ms-excel;charset=UTF-8");
        response.addHeader("Cache-Control", "no-cache");
        response.setHeader("Content-Disposition", "attachment;filename=" + fileName);

        //寫出到的目標流
        excelWriter.flush(response.getOutputStream(), true);
        excelWriter.close();
    }

    /**
     *
     * @param file file
     * @return ExcelReader
     * @throws IOException IOException
     */
    public static ExcelReader getExcelReader(MultipartFile file) throws IOException {
        if (Objects.isNull(file) || StringUtils.isBlank(file.getOriginalFilename())) {
            throw new IllegalArgumentException("文件為空");
        } else if (!(file.getOriginalFilename().endsWith(".xlsx")
                || file.getOriginalFilename().endsWith(".xls"))) {
            throw new IllegalArgumentException("請上傳excel");
        }

        File f = File.createTempFile("pwo-", file.getOriginalFilename());
        file.transferTo(f);

        ExcelReader excelReader = new ExcelReader(f, 0);
        int rowCount = excelReader.getRowCount();
        if (rowCount < 1) {
            throw new IllegalArgumentException("內容為空");
        } else if (rowCount > 1000) {
            throw new IllegalArgumentException("須導入少于1000條的記錄");
        }

        return excelReader;
    }
}

3、maven依賴

        <!--poi excel about-->
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>4.1.2</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>4.1.2</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml-schemas</artifactId>
            <version>4.1.2</version>
        </dependency>

        <!-- hutool -->
        <dependency>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
            <version>4.6.3</version>
        </dependency>

到此,關于“excel導出的方法有哪些”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注創新互聯網站,小編會繼續努力為大家帶來更多實用的文章!

網站欄目:excel導出的方法有哪些
URL地址:http://vcdvsql.cn/article42/gjdpec.html

成都網站建設公司_創新互聯,為您提供Google動態網站商城網站App設計定制開發服務器托管

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

成都網站建設