
excel
FinelyYang
这个作者很懒,什么都没留下…
展开
-
java excel转为svg
我这里的需求是,使用excel将系统统计结果导出,设置样式、格式后,转换为矢量图svg。使用到Free-Spire-XLS。一、引入maven依赖:<dependencies> <dependency> <groupId>e-iceblue</groupId> <artifactId>...原创 2020-01-03 17:21:04 · 1167 阅读 · 4 评论 -
XSSFWorkbook设置行背景色、自定义背景色、单元格合并后加边框
创建工作表:Workbook workbook = new XSSFWorkbook();1.行背景色CellStyle cellStyle = workbook.createCellStyle();cellStyle.setFillForegroundColor(cellStyle.setFillForegroundColor(IndexedColors.RED.index);...原创 2019-09-04 15:50:54 · 35322 阅读 · 12 评论