POI--各种样式的XSSFCellStyle的生成

    //背景色、フォント色、枠線より各種XSSFCellStyleの作成して、cellStyleMapに保存する
    private HashMap createXssfCellStyle() {
        HashMap cellStyleMap = new HashMap<>();

        XSSFCellStyle xssfCellStyle;
        String mapKey = "";
        XSSFColor[] xssfColorArr = new XSSFColor[bgColorArr.length];
        XSSFFont[] xssfFontArr = new XSSFFont[fontColorArr.length];
        for(int bgColorIndex=0; bgColorIndex

  

转载于:https://www.cnblogs.com/gaoBlog/p/10724989.html

你可能感兴趣的:(POI--各种样式的XSSFCellStyle的生成)