1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
| package com.muycode;
import cn.hutool.core.util.RandomUtil; import cn.hutool.core.util.StrUtil; import cn.hutool.poi.excel.ExcelUtil; import cn.hutool.poi.excel.ExcelWriter; import org.apache.poi.ss.usermodel.*; import org.apache.poi.ss.util.CellRangeAddress; import org.apache.poi.xssf.usermodel.XSSFClientAnchor; import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import javax.imageio.ImageIO; import java.awt.image.BufferedImage; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileOutputStream; import java.net.URL; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.LinkedList; import java.util.Map;
public class ExcelDemo {
public static void main(String[] args) { File file = new File("C:/Users/Administrator/Downloads/muycode_test_" + System.currentTimeMillis() + ".xlsx");
ExcelWriter writer = ExcelUtil.getWriter(file.getPath());
Sheet sheet = writer.getSheet(); int lastCell = 7;
int headRowIndex = 0; Row row1 = sheet.createRow(headRowIndex++); Cell row1Cell0 = row1.createCell(0); row1Cell0.setCellValue(" 测试表头合并单元格 \n 单元格内容换行 "); CellRangeAddress rangeAddress1 = new CellRangeAddress(row1.getRowNum(), row1.getRowNum(), 0, lastCell); sheet.addMergedRegion(rangeAddress1); setExcelRegionStyle(getCellStyle(writer, true, 16, true, null, true), rangeAddress1, writer); writer.setRowHeight(row1.getRowNum(), 50);
Row row2 = sheet.createRow(headRowIndex++); writer.setRowHeight(row2.getRowNum(), 20); int row2CurrentCellIndex = 0; Row row3 = sheet.createRow(headRowIndex++); writer.setRowHeight(row3.getRowNum(), 20); int row3CurrentCellIndex = 1; Cell row2Cell1 = row2.createCell(row2CurrentCellIndex++); row2Cell1.setCellValue(" 姓名 "); CellRangeAddress row2RangeAddress1 = new CellRangeAddress(row2.getRowNum(), row3.getRowNum(), row2Cell1.getColumnIndex(), row2Cell1.getColumnIndex()); sheet.addMergedRegion(row2RangeAddress1); setExcelRegionStyle(getCellStyle(writer, true, 12, true, null, false), row2RangeAddress1, writer); writer.setColumnWidth(row2Cell1.getColumnIndex(), 20);
LinkedList<String> heads = getHeads();
Cell row2Cell2 = row2.createCell(row2CurrentCellIndex++); row2Cell2.setCellValue(" 星期 "); CellRangeAddress row2RangeAddress2 = new CellRangeAddress(row2.getRowNum(), row2.getRowNum(), row2Cell2.getColumnIndex(), row2Cell2.getColumnIndex() + heads.size()); sheet.addMergedRegion(row2RangeAddress2); setExcelRegionStyle(getCellStyle(writer, true, 12, true, null, false), row2RangeAddress2, writer);
row2CurrentCellIndex = row2CurrentCellIndex + heads.size();
Cell row2Cell3 = row2.createCell(row2CurrentCellIndex); row2Cell3.setCellValue(" 合计 "); CellRangeAddress row2RangeAddress3 = new CellRangeAddress(row2.getRowNum(), row3.getRowNum(), row2Cell3.getColumnIndex(), row2Cell3.getColumnIndex()); sheet.addMergedRegion(row2RangeAddress3); setExcelRegionStyle(getCellStyle(writer, true, 12, true, null, false), row2RangeAddress3, writer); writer.setColumnWidth(row2Cell3.getColumnIndex(), 15);
for (String head : heads) { Cell currentCell = row3.createCell(row3CurrentCellIndex++); currentCell.setCellValue(head); currentCell.setCellStyle(getCellStyle(writer, true, 12, true, null, false)); writer.setColumnWidth(currentCell.getColumnIndex(), 15); } Cell row3LastCell = row3.createCell(row3CurrentCellIndex); row3LastCell.setCellValue(" 图片 "); row3LastCell.setCellStyle(getCellStyle(writer, true, 12, true, null, false)); writer.setColumnWidth(row3LastCell.getColumnIndex(), 15);
LinkedHashMap<String, LinkedList<String>> testData = getTestData(); for (String name : testData.keySet()) { int currentIndex = 0; Row currentRow = sheet.createRow(headRowIndex++); Cell currentCell1 = currentRow.createCell(currentIndex++); currentCell1.setCellValue(name); currentCell1.setCellStyle(getCellStyle(writer, false, 12, true, null, false)); LinkedList<String> list = testData.get(name); for (String data : list) { Cell currentCell = currentRow.createCell(currentIndex++); if (data.contains("http")) { fillExcelImage(sheet, currentRow.getRowNum(), currentCell.getColumnIndex(), data); currentCell.setCellStyle(getCellStyle(writer, false, 12, true, null, false)); writer.setRowHeight(currentRow.getRowNum(), 40); } else { if (StrUtil.equals(" 无 ", data)) { currentCell.setCellValue(data); } else { currentCell.setCellValue(Integer.parseInt(data)); } currentCell.setCellStyle(getCellStyle(writer, false, 12, true, null, false)); } }
int rowNum = currentRow.getRowNum() + 1; Cell currentLastCell = currentRow.createCell(currentIndex); String startLetter = getSheetCellLetter(2); String endLetter = getSheetCellLetter(currentIndex - 1); String formula = "SUM(" + startLetter + rowNum + ":" + endLetter + rowNum + ")"; currentLastCell.setCellFormula(formula); currentLastCell.setCellStyle(getCellStyle(writer, false, 12, true, null, false)); }
createExcel(writer, file); }
private static LinkedList<String> getHeads() { LinkedList<String> list = new LinkedList<>(); list.add(" 星期一 "); list.add(" 星期二 "); list.add(" 星期三 "); list.add(" 星期四 "); list.add(" 星期五 "); return list; }
private static LinkedHashMap<String, LinkedList<String>> getTestData() { LinkedHashMap<String, LinkedList<String>> resultMap = new LinkedHashMap<>(16); LinkedList<String> list1 = new LinkedList<>(); for (int i = 0; i < 5; i++) { list1.add(RandomUtil.randomInt(10, 100) + ""); } list1.add(" 无 "); resultMap.put(" 张三 ", list1);
LinkedList<String> list2 = new LinkedList<>(); for (int i = 0; i < 5; i++) { list2.add(RandomUtil.randomInt(10, 100) + ""); } list2.add(" 无 "); resultMap.put(" 李四 ", list2);
LinkedList<String> list3 = new LinkedList<>(); for (int i = 0; i < 5; i++) { list3.add(RandomUtil.randomInt(10, 100) + ""); } list3.add(" 无 "); resultMap.put(" 王五 ", list3);
LinkedList<String> list4 = new LinkedList<>(); for (int i = 0; i < 5; i++) { list4.add(RandomUtil.randomInt(10, 100) + ""); } list4.add(" 无 "); resultMap.put(" 赵六 ", list4);
LinkedList<String> list5 = new LinkedList<>(); for (int i = 0; i < 5; i++) { list5.add(RandomUtil.randomInt(10, 100) + ""); } list5.add("https://all-imgs.muycode.com/m-auth.jpg"); resultMap.put(" 孙七 ", list5); return resultMap; }
private static String getSheetCellLetter(int cell) { Map<Integer, String> map = new HashMap<>(16); map.put(1, "A"); map.put(2, "B"); map.put(3, "C"); map.put(4, "D"); map.put(5, "E"); map.put(6, "F"); map.put(7, "G"); map.put(8, "H"); map.put(9, "I"); map.put(10, "J"); map.put(11, "K"); map.put(12, "L"); map.put(13, "M"); map.put(14, "N"); map.put(15, "O"); map.put(16, "P"); map.put(17, "Q"); map.put(18, "R"); map.put(19, "S"); map.put(20, "T"); map.put(21, "U"); map.put(22, "V"); map.put(23, "W"); map.put(24, "X"); map.put(25, "Y"); map.put(26, "Z"); return map.get(cell); } }
|