Excel 工具類 4.1.2 xlsx

image.png

1.poi版本

    <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi</artifactId>
        <version>4.1.2</version>
      </dependency>

        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>ooxml-schemas</artifactId>
            <version>1.4</version>
        </dependency>

2.水印工具類

import lombok.extern.slf4j.Slf4j;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFRelation;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

import javax.imageio.ImageIO;
import java.awt.AlphaComposite;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.Transparency;
import java.awt.font.FontRenderContext;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
import java.io.ByteArrayOutputStream;
import java.io.IOException;

/**
 * 新增水印
 * 只支持XSSFWorkbook
 * .xlsx
 *
 * @author archie
 * @date 2024-02-02
 */
@Slf4j
public class ExcelWaterMark {

    public static ByteArrayOutputStream createWaterMark(String content) {
        int width = 200;
        int height = 150;
        // 獲取bufferedImage對象
        BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
        String fontType = "微軟雅黑";
        int fontStyle = Font.BOLD;
        int fontSize = 20;
        Font font = new Font(fontType, fontStyle, fontSize);
        // 獲取Graphics2d對象
        Graphics2D g2d = image.createGraphics();
        image = g2d.getDeviceConfiguration().createCompatibleImage(width, height, Transparency.TRANSLUCENT);
        g2d.dispose();
        g2d = image.createGraphics();
        //設(shè)置字體顏色和透明度,最后一個參數(shù)為透明度 設(shè)置字體
        g2d.setColor(new Color(0, 0, 0, 30));
        g2d.setStroke(new BasicStroke(1));
        g2d.setFont(font);
        // 設(shè)置字體類型  加粗 大小設(shè)置傾斜度
        g2d.rotate(-0.5, (double) image.getWidth() / 2, (double) image.getHeight() / 2);
        FontRenderContext context = g2d.getFontRenderContext();
        Rectangle2D bounds = font.getStringBounds(content, context);
        double x = (width - bounds.getWidth()) / 2;
        double y = (height - bounds.getHeight()) / 2;
        double ascent = -bounds.getY();
        double baseY = y + ascent;
        // 寫入水印文字原定高度過小,所以累計寫水印篙挽,增加高度
        g2d.drawString(content, (int) x, (int) baseY);
        // 設(shè)置透明度
        g2d.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER));
        // 釋放對象
        g2d.dispose();
        ByteArrayOutputStream os = new ByteArrayOutputStream();
        try {
            ImageIO.write(image, "png", os);
        } catch (IOException e) {
            log.error("寫入水印圖片失敗", e);
            throw new RuntimeException(e);
        }
        return os;
    }


    /**
     * 為Excel打上水印工具函數(shù)
     *
     * @param sheet excel sheet
     * @param bytes 水印圖片字節(jié)數(shù)組
     */
    public static void putWaterRemarkToExcel(XSSFSheet sheet, byte[] bytes) {
        //add relation from sheet to the picture data
        XSSFWorkbook workbook = sheet.getWorkbook();
        int pictureIdx = workbook.addPicture(bytes, Workbook.PICTURE_TYPE_PNG);
        String rID = sheet.addRelation(null, XSSFRelation.IMAGES, workbook.getAllPictures().get(pictureIdx))
                .getRelationship().getId();
        //set background picture to sheet
        sheet.getCTWorksheet().addNewPicture().setId(rID);
    }
}

Excel導出工具類


import org.apache.commons.lang3.StringUtils;
import org.apache.poi.hssf.util.HSSFColor;
import org.apache.poi.ss.usermodel.BorderStyle;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.FillPatternType;
import org.apache.poi.ss.usermodel.Font;
import org.apache.poi.ss.usermodel.HorizontalAlignment;
import org.apache.poi.ss.usermodel.VerticalAlignment;
import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFRichTextString;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.net.URLEncoder;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import java.util.Map;


/**
 * excel導出工具
 *
 * @author archie
 */
public class ExcelsXlsxUtil {
    private static final Logger logger = LoggerFactory.getLogger(ExcelsXlsxUtil.class);


    /**
     * 時間格式
     */
    private static final String TIME_PATTERN = "yyyy-MM-dd HH:mm:ss";
    /**
     * 默認列的寬度
     */
    private static final int COLUMN_WIDTH = 24;
    /**
     * 表頭字體大小
     */
    private static final int TITLE_FONT_SIZE = 11;
    /**
     * 表頭單元格
     **/
    private static final int TITLE_CELL = 0;
    /**
     * 內(nèi)容單元格
     **/
    private static final int CONTENT_CELL = 1;

    /**
     * 每個sheeet的最大數(shù)據(jù)數(shù)量
     */
    private static final int MAX_LENGTH = 60000;


    /**
     * 導出
     * 2003版本的xls
     *
     * @param title         表格標題名,文件名
     * @param headers       表格頭部標題中文集合
     * @param headerZhWords 表格頭部標題的字段名
     * @param dataSet       需要顯示的數(shù)據(jù)集合
     */
    public static <T> void exportExcel(String title, String[] headers, String[] headerZhWords, Collection<T> dataSet,
                                       String waterMaker,
                                       HttpServletResponse response) throws UnsupportedEncodingException {
        response.setContentType("application/vnd.ms-excel;charset=utf-8");
        response.setHeader("Content-Disposition", String.format("attachment;filename=%s.xlsx",
                URLEncoder.encode(title, "UTF-8")));
        //水印文字
        byte[] wYBytes = new byte[0];
        if (!StringUtils.isEmpty(waterMaker)) {
            wYBytes = ExcelWaterMark.createWaterMark(waterMaker).toByteArray();
        }
        try (XSSFWorkbook workbook = new XSSFWorkbook();
             ServletOutputStream out = response.getOutputStream()) {
            int pageNum = 1;
            int dataLength = dataSet.size();
            List<T> dataAll = new ArrayList<>(dataSet);
            List<T> dataPage;
            //分sheet處理 每個sheet數(shù)據(jù)條數(shù)為MAX_LENGTH
            while (dataLength >= 0) {
                if (dataLength > MAX_LENGTH) {
                    dataPage = dataAll.subList((pageNum - 1) * MAX_LENGTH, pageNum * MAX_LENGTH);
                } else {
                    dataPage = dataAll.subList((pageNum - 1) * MAX_LENGTH, dataAll.size());
                }
                // 生成一個sheet
                XSSFSheet sheet = workbook.createSheet(String.format("%s -%s-", title, pageNum));
                dataLength -= MAX_LENGTH;
                pageNum++;
                // 設(shè)置表格默認列寬度
                sheet.setDefaultColumnWidth(COLUMN_WIDTH);
                // 生成標題樣式
                CellStyle titleStyle = setCellStyle(workbook, TITLE_CELL);
                // 產(chǎn)生表格標題行
                XSSFRow row = sheet.createRow(0);
                XSSFCell cellHeader;
                for (int i = 0; i < headers.length; i++) {
                    cellHeader = row.createCell(i);
                    cellHeader.setCellStyle(titleStyle);
                    cellHeader.setCellValue(new XSSFRichTextString(headers[i]));
                }
                //填充內(nèi)容
                fillContent(headerZhWords, dataPage, workbook, sheet, 0);
                if (wYBytes.length > 0) {
                    ExcelWaterMark.putWaterRemarkToExcel(sheet, wYBytes);
                }
            }
            workbook.write(out);
        } catch (IOException e) {
            logger.error("excel生成錯誤", e);
        }
    }

    /**
     * 設(shè)置樣式
     **/
    private static CellStyle setCellStyle(XSSFWorkbook workbook, int cellType) {
        CellStyle style = null;
        //邊框
        BorderStyle borderStyle = BorderStyle.THIN;
        short borderColor = HSSFColor.HSSFColorPredefined.BLACK.getIndex();
        if (cellType == TITLE_CELL) {
            style = workbook.createCellStyle();
            style.setFillForegroundColor(HSSFColor.HSSFColorPredefined.GREY_50_PERCENT.getIndex());
            style.setFillPattern(FillPatternType.SOLID_FOREGROUND);
            style.setBorderBottom(borderStyle);
            style.setBorderLeft(borderStyle);
            style.setBorderRight(borderStyle);
            style.setBorderTop(borderStyle);
            style.setAlignment(HorizontalAlignment.CENTER_SELECTION);
            style.setTopBorderColor(borderColor);
            style.setLeftBorderColor(borderColor);
            style.setRightBorderColor(borderColor);
            style.setBottomBorderColor(borderColor);
            //垂直居中
            style.setAlignment(HorizontalAlignment.CENTER_SELECTION);
            style.setVerticalAlignment(VerticalAlignment.CENTER);
            //自動換行
            style.setWrapText(false);
            // 生成標題字體
            Font font = workbook.createFont();
            font.setBold(true);
            font.setFontName("宋體");
            font.setColor(HSSFColor.HSSFColorPredefined.WHITE.getIndex());
            font.setFontHeightInPoints((short) TITLE_FONT_SIZE);
            // 把字體應用到當前的樣式
            style.setFont(font);
        } else if (cellType == CONTENT_CELL) {
            style = workbook.createCellStyle();
            style.setFillForegroundColor(HSSFColor.HSSFColorPredefined.AUTOMATIC.getIndex());
            style.setFillPattern(FillPatternType.NO_FILL);
            style.setBorderBottom(borderStyle);
            style.setBorderLeft(borderStyle);
            style.setBorderRight(borderStyle);
            style.setBorderTop(borderStyle);
            style.setAlignment(HorizontalAlignment.CENTER_SELECTION);
            style.setVerticalAlignment(VerticalAlignment.CENTER);
            //設(shè)置自動換行
            style.setWrapText(false);
            // 生成內(nèi)容字體
            Font font = workbook.createFont();
            font.setBold(false);
            style.setFont(font);
        }
        return style;
    }

    /**
     * 填充sheet內(nèi)容
     *
     * @param headerWords       填充數(shù)據(jù)的字段
     * @param dataSet           數(shù)據(jù)集
     * @param workbook          工作上下文
     * @param sheet             sheet
     * @param contentStartIndex 從第contentStartIndex+1行開始填充數(shù)據(jù)
     */
    private static <T> void fillContent(String[] headerWords, Collection<T> dataSet, XSSFWorkbook workbook, XSSFSheet sheet,
                                        Integer contentStartIndex) {
        //內(nèi)容樣式
        CellStyle contentStyle = setCellStyle(workbook, CONTENT_CELL);
        SimpleDateFormat sdf = new SimpleDateFormat(TIME_PATTERN);
        //字段名
        String fieldName;
        //get方法名稱
        String getMethodName;
        //單元格
        XSSFCell cell;
        Method getMethod;
        Object value = "";
        XSSFRow row;
        contentStartIndex = contentStartIndex == null ? 0 : contentStartIndex;
        T t;
        int index = 0;
        Iterator<T> it = dataSet.iterator();
        while (it.hasNext()) {
            index++;
            row = sheet.createRow(index + contentStartIndex);
            t = it.next();
            for (int i = 0; i < headerWords.length; i++) {
                cell = row.createCell(i);
                cell.setCellStyle(contentStyle);
                fieldName = headerWords[i];
                if (t instanceof Map) {
                    //Map類型
                    value = ((Map<?, ?>) t).get(fieldName);
                } else {
                    getMethodName = getBeanMethodName(fieldName);
                    //Bean類
                    try {
                        getMethod = t.getClass().getMethod(getMethodName);
                        value = getMethod.invoke(t);
                    } catch (SecurityException | NoSuchMethodException | IllegalAccessException |
                             InvocationTargetException e) {
                        logger.error("excel生成錯誤", e);
                    }
                }
                if (null == value) {
                    cell.setCellValue("");
                } else if (value instanceof Integer) {
                    cell.setCellValue((Integer) value);
                } else if (value instanceof Float || value instanceof Double) {
                    cell.setCellValue(String.valueOf(value));
                } else if (value instanceof Long) {
                    cell.setCellValue((Long) value);
                } else if (value instanceof Date) {
                    cell.setCellValue(sdf.format((Date) value));
                } else {
                    cell.setCellValue(String.valueOf(value));
                }
            }
        }
    }

    /**
     * 獲取bean的獲取值的方法
     *
     * @param fieldName
     * @return
     */
    private static String getBeanMethodName(String fieldName) {
        String cacheName = CommonConstant.CachePre.METHOD + fieldName;
        String methodName = String.valueOf(CommonConstant.BaseCache.COMMON_CACHE.get(cacheName));
        if (CommonConstant.BaseConstant.NULL.equals(methodName)) {
            methodName = "get" + fieldName.substring(0, 1).toUpperCase()
                    + fieldName.substring(1);
            CommonConstant.BaseCache.COMMON_CACHE.put(cacheName, methodName);
        }
        return methodName;
    }
}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末裂垦,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子其兴,更是在濱河造成了極大的恐慌玄坦,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件害幅,死亡現(xiàn)場離奇詭異瘾蛋,居然都是意外死亡,警方通過查閱死者的電腦和手機矫限,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進店門哺哼,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人叼风,你說我怎么就攤上這事取董。” “怎么了无宿?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵茵汰,是天一觀的道長。 經(jīng)常有香客問我孽鸡,道長蹂午,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任彬碱,我火速辦了婚禮豆胸,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘巷疼。我一直安慰自己晚胡,他們只是感情好,可當我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布嚼沿。 她就那樣靜靜地躺著估盘,像睡著了一般。 火紅的嫁衣襯著肌膚如雪骡尽。 梳的紋絲不亂的頭發(fā)上遣妥,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天,我揣著相機與錄音攀细,去河邊找鬼箫踩。 笑死,一個胖子當著我的面吹牛辨图,可吹牛的內(nèi)容都是我干的班套。 我是一名探鬼主播,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼故河,長吁一口氣:“原來是場噩夢啊……” “哼吱韭!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤理盆,失蹤者是張志新(化名)和其女友劉穎痘煤,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體猿规,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡衷快,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了姨俩。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片蘸拔。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖环葵,靈堂內(nèi)的尸體忽然破棺而出调窍,到底是詐尸還是另有隱情,我是刑警寧澤张遭,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布邓萨,位于F島的核電站,受9級特大地震影響菊卷,放射性物質(zhì)發(fā)生泄漏缔恳。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一洁闰、第九天 我趴在偏房一處隱蔽的房頂上張望歉甚。 院中可真熱鬧,春花似錦渴庆、人聲如沸铃芦。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至仁烹,卻和暖如春耸弄,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背卓缰。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工计呈, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人征唬。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓捌显,卻偏偏與公主長得像,于是被迫代替她去往敵國和親总寒。 傳聞我的和親對象是個殘疾皇子扶歪,可洞房花燭夜當晚...
    茶點故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容