我正在使用Apache POI
将Excel VBA
脚本转换为Java
,但我被卡住了。在VBA中,可以很容易地对单元格连续应用填充颜色和边框。但在POI中,如果不创建数百个XSSFCellStyles
[(使用的每种颜色)x(使用的每种边框组合)x(使用的每种字体)]似乎几乎是不可能的。我正在尝试重新创建这个电子表格,它目前是通过VBA生成的:电子表格映像
下面的代码旨在通过将顶部两行填充为灰色并添加外部边框来开始格式化。我把代码分成了三个类(请原谅任何草率的代码或noob错误。仍然在学习Java的第2周):
>
主类:
public class CreateExcel {
public static void createExcel(String[] args) throws IOException {
XSSFWorkbook workbook = new XSSFWorkbook();
XSSFSheet resultsSheet = workbook.createSheet("Results");
ExcelMethods format = new ExcelMethods();
ExcelStyles style = new ExcelStyles();
format.formatRange(workbook, resultsSheet, style.fillPMEDarkGray(workbook), 1, 2, 2, 14);
format.formatRange(workbook, resultsSheet, style.borderLeft(workbook), 1, 2, 2, 1);
format.formatRange(workbook, resultsSheet, style.borderRight(workbook), 1, 2, 16, 1);
format.formatRange(workbook, resultsSheet, style.borderTop(workbook), 1, 1, 2, 14);
format.formatRange(workbook, resultsSheet, style.borderBottom(workbook), 2, 1, 2, 14);
try (FileOutputStream fileOut = new FileOutputStream("C:<file location>/workbook.xlsx")) {
workbook.write(fileOut);
}
}
}
具有格式化单元格循环的类:
public class ExcelMethods {
public void formatRange(XSSFWorkbook workbook,
XSSFSheet sheet,
XSSFCellStyle style,
int rowStart,
int numRows,
int columnStart,
int numColumns) {
for (int i = rowStart; i <= rowStart + numRows; i++) {
XSSFRow row = sheet.createRow(i);
for (int j = columnStart; j <= columnStart + numColumns; j++) {
XSSFCell cell = row.createCell(j);
cell.setCellStyle(style);
}
}
}
具有定义的样式的类:
public class ExcelStyles{
public XSSFCellStyle fillPMEDarkGray(XSSFWorkbook workbook) {
XSSFColor pmeDarkGray = new XSSFColor(new java.awt.Color(128, 128, 128));
XSSFCellStyle fillCell = workbook.createCellStyle();
fillCell.setFillForegroundColor(pmeDarkGray);
fillCell.setFillPattern(SOLID_FOREGROUND);
return fillCell;
}
public XSSFCellStyle borderLeft(XSSFWorkbook workbook) {
XSSFCellStyle cellBorder = workbook.createCellStyle();
cellBorder.setBorderLeft(BorderStyle.THICK);
return cellBorder;
}
public XSSFCellStyle borderRight(XSSFWorkbook workbook) {
XSSFCellStyle cellBorder = workbook.createCellStyle();
cellBorder.setBorderRight(BorderStyle.THICK);
return cellBorder;
}
public XSSFCellStyle borderTop(XSSFWorkbook workbook) {
XSSFCellStyle cellBorder = workbook.createCellStyle();
cellBorder.setBorderTop(BorderStyle.THICK);
return cellBorder;
}
public XSSFCellStyle borderBottom(XSSFWorkbook workbook) {
XSSFCellStyle cellBorder = workbook.createCellStyle();
cellBorder.setBorderBottom(BorderStyle.THICK);
return cellBorder;
}
}
我希望有人能想出一个聪明的办法来解决这个问题,因为我已经无计可施了。
谢谢你的帮助!
好的,让我们看看如何使用ApachePOI
创建示例表,而不需要使用低级对象。
主要方法是使用Cellitil
和PropertyTemplate
创建所需的单元格样式。因此,我们不需要手动创建每一个所需的单元格样式(例如,一个带边框的区域的每一个不同颜色的边缘)。但我们仍然节省,没有创建太多的单元格样式(例如,每个单元格一个单元格样式)。
但正如在“无法在XSSFCell Apache POI中设置自定义颜色”中提到的,PropertyTemplate
以及Cellitil
和RegionUtil
仅基于SS.UserModel
级别,而不是基于XSSF.UserModel
级别。但是org.apache.poi.ss.usermodel.cellStyle
直到现在还不了解setFillFregroundColor(Color Color)
。它只知道setFillFregroundColor(短bg)
。因此ss.usermodel
级别直到现在还不能将color
设置为填充前景色。只能使用short
(颜色索引)。我们必须记住这一点,并且只使用indexedcolors
设置单元格填充。否则就会失败。
示例代码,注释说明它的操作:
import java.io.FileOutputStream;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.ss.util.CellUtil;
import org.apache.poi.ss.util.PropertyTemplate;
import java.util.Map;
import java.util.HashMap;
public class CreateExcelCellStyles {
public static CellStyle getPreferredCellStyle(Cell cell) {
// a method to get the preferred cell style for a cell
// this is either the already applied cell style
// or if that not present, then the row style (default cell style for this row)
// or if that not present, then the column style (default cell style for this column)
CellStyle cellStyle = cell.getCellStyle();
if (cellStyle.getIndex() == 0) cellStyle = cell.getRow().getRowStyle();
if (cellStyle == null) cellStyle = cell.getSheet().getColumnStyle(cell.getColumnIndex());
if (cellStyle == null) cellStyle = cell.getCellStyle();
return cellStyle;
}
public static void main(String[] args) throws Exception {
//the data
Object[][] data = new Object[][]{
{null, "Returns", "Benchmark 1", null, null, null, "Benchmark 2", null, null, null, "Benchmark 3", null, null, null},
{null, null, "PME Plus", null, null, "Direct", "PME Plus", null, null, "Direct", "PME Plus", null, null, "Direct"},
{null, null, "PME IRR", "IRR", "KS PME", "Alpha", "PME IRR", "IRR", "KS PME", "Alpha", "PME IRR", "IRR", "KS PME", "Alpha"},
{"1 Year", .17, .162, .162, 1.01, .007, .191, .191, .99, -.018, .192, .192, .99, -.018},
{"3 Year", null, null, null, null, null, null, null, null, null, null, null, null, null},
{"5 Year", null, null, null, null, null, null, null, null, null, null, null, null, null},
{"10 Year", null, null, null, null, null, null, null, null, null, null, null, null, null},
{"20 Year", .103, .051, .059, 1.17, .048, .071, .074, 1.11, .03, .062, .066, 1.14, .037},
{"Since Inception", .109, .062, .066, 1.15, .041, .079, .08, 1.10, .027, .073, .074, 1.12, .031},
};
//we need PropertyTemplate later
PropertyTemplate propertyTemplate = new PropertyTemplate();
//we need properties map for cell styles later
Map<String, Object> properties;
//creating workbook
Workbook workbook = new XSSFWorkbook();
//we need DataFormat later
DataFormat format = workbook.createDataFormat();
//creating default font
Font defaultFont = workbook.createFont();
defaultFont.setFontName("Calibri");
defaultFont.setFontHeightInPoints((short)12);
//we need font in bold and white for headings
Font defaultFontWhite = workbook.createFont();
defaultFontWhite.setFontName("Calibri");
defaultFontWhite.setFontHeightInPoints((short)12);
defaultFontWhite.setBold(true);
defaultFontWhite.setColor(IndexedColors.WHITE.getIndex());
//creating default cell style having default font
CellStyle defaultCellStyle = workbook.createCellStyle();
defaultCellStyle.setFont(defaultFont);
//we need percent style for numbers later
CellStyle percent = workbook.createCellStyle();
percent.cloneStyleFrom(defaultCellStyle);
percent.setDataFormat(format.getFormat("0.0%"));
percent.setAlignment(HorizontalAlignment.CENTER);
//we need user defined number style having unit "x" for numbers later
CellStyle doubleX = workbook.createCellStyle();
doubleX.cloneStyleFrom(defaultCellStyle);
doubleX.setDataFormat(format.getFormat("0.00\\x"));
doubleX.setAlignment(HorizontalAlignment.CENTER);
//creating sheet
Sheet sheet = workbook.createSheet();
//set default column styles
sheet.setDefaultColumnStyle(0, defaultCellStyle); //first column A = default
for (int c = 1; c < 14; c++) sheet.setDefaultColumnStyle(c, percent); //columns B to N = percent; some will be overridden later
sheet.setDefaultColumnStyle(4, doubleX); //column E = user defined number style having unit "x"
sheet.setDefaultColumnStyle(8, doubleX); //column I = user defined number style having unit "x"
sheet.setDefaultColumnStyle(12, doubleX); //column M = user defined number style having unit "x"
//put data in sheet
int r = 0;
for (Object[] rowdata : data) {
Row row = sheet.createRow(r++);
int c = 0;
for (Object celldata : rowdata) {
Cell cell = row.createCell(c++);
if (celldata instanceof String) cell.setCellValue((String)celldata);
else if (celldata instanceof Double) cell.setCellValue((Double)celldata);
cell.setCellStyle(getPreferredCellStyle(cell)); //get preferred cell style from column style
}
}
//add merged regions
sheet.addMergedRegion(new CellRangeAddress(0, 0, 2, 5));
sheet.addMergedRegion(new CellRangeAddress(0, 0, 6, 9));
sheet.addMergedRegion(new CellRangeAddress(0, 0, 10, 13));
sheet.addMergedRegion(new CellRangeAddress(1, 1, 2, 4));
sheet.addMergedRegion(new CellRangeAddress(1, 1, 6, 8));
sheet.addMergedRegion(new CellRangeAddress(1, 1, 10, 12));
sheet.addMergedRegion(new CellRangeAddress(0, 2, 0, 0));
CellUtil.setVerticalAlignment(CellUtil.getCell(CellUtil.getRow(0, sheet), 0), VerticalAlignment.CENTER);
sheet.addMergedRegion(new CellRangeAddress(0, 2, 1, 1));
CellUtil.setVerticalAlignment(CellUtil.getCell(CellUtil.getRow(0, sheet), 1), VerticalAlignment.CENTER);
//styling the table headings (rows 1 to 3)
for (int rw = 0; rw < 3; rw++) {
Row row = sheet.getRow(rw);
for (int c = 0; c < 14; c++) {
properties = new HashMap<String, Object>();
properties.put(CellUtil.FILL_PATTERN, FillPatternType.SOLID_FOREGROUND);
properties.put(CellUtil.FILL_FOREGROUND_COLOR, IndexedColors.GREY_50_PERCENT.getIndex()); //do using only IndexedColors for fills
//properties.put(CellUtil.FONT, defaultFontWhite.getIndex()); //up to apache poi 3.17
properties.put(CellUtil.FONT, defaultFontWhite.getIndexAsInt()); //since apache poi 4.0.0
CellUtil.setCellStyleProperties(CellUtil.getCell(row, c), properties); //do using CellUtil for **add** new properties to already applied cell styles
}
}
propertyTemplate.drawBorders(new CellRangeAddress(0, 2, 0, 13), BorderStyle.MEDIUM, BorderExtent.ALL); //since we have merged regions we can simply drawing all borders here
//styling the table body (rows 4 to 9)
for (int rw = 3; rw < 9; rw++) {
Row row = sheet.getRow(rw);
properties = new HashMap<String, Object>();
properties.put(CellUtil.FILL_PATTERN, FillPatternType.SOLID_FOREGROUND);
properties.put(CellUtil.FILL_FOREGROUND_COLOR, IndexedColors.LEMON_CHIFFON.getIndex());
CellUtil.setCellStyleProperties(CellUtil.getCell(row, 0), properties); //column A
properties = new HashMap<String, Object>();
properties.put(CellUtil.FILL_PATTERN, FillPatternType.SOLID_FOREGROUND);
properties.put(CellUtil.FILL_FOREGROUND_COLOR, IndexedColors.PALE_BLUE.getIndex());
CellUtil.setCellStyleProperties(CellUtil.getCell(row, 1), properties); //column B
for (int c = 2; c < 6; c++) {
properties = new HashMap<String, Object>();
properties.put(CellUtil.FILL_PATTERN, FillPatternType.SOLID_FOREGROUND);
properties.put(CellUtil.FILL_FOREGROUND_COLOR, IndexedColors.LIGHT_GREEN.getIndex());
CellUtil.setCellStyleProperties(CellUtil.getCell(row, c), properties); //columns C:F
}
for (int c = 6; c < 10; c++) {
properties = new HashMap<String, Object>();
properties.put(CellUtil.FILL_PATTERN, FillPatternType.SOLID_FOREGROUND);
properties.put(CellUtil.FILL_FOREGROUND_COLOR, IndexedColors.LIGHT_ORANGE.getIndex());
CellUtil.setCellStyleProperties(CellUtil.getCell(row, c), properties); //columns G:J
}
for (int c = 10; c < 14; c++) {
properties = new HashMap<String, Object>();
properties.put(CellUtil.FILL_PATTERN, FillPatternType.SOLID_FOREGROUND);
properties.put(CellUtil.FILL_FOREGROUND_COLOR, IndexedColors.LIGHT_CORNFLOWER_BLUE.getIndex());
CellUtil.setCellStyleProperties(CellUtil.getCell(row, c), properties); //columns K:N
}
}
propertyTemplate.drawBorders(new CellRangeAddress(3, 8, 0, 0), BorderStyle.MEDIUM, BorderExtent.OUTSIDE); //outside border around A4:A9
propertyTemplate.drawBorders(new CellRangeAddress(3, 8, 1, 1), BorderStyle.MEDIUM, BorderExtent.OUTSIDE); //outside border around B4:B9
propertyTemplate.drawBorders(new CellRangeAddress(3, 8, 2, 5), BorderStyle.MEDIUM, BorderExtent.OUTSIDE); //outside border around C4:F9
propertyTemplate.drawBorders(new CellRangeAddress(3, 8, 6, 9), BorderStyle.MEDIUM, BorderExtent.OUTSIDE); //outside border around G4:J9
propertyTemplate.drawBorders(new CellRangeAddress(3, 8, 10, 13), BorderStyle.MEDIUM, BorderExtent.OUTSIDE); //outside border around K4:N9
//apply the PropertyTemplate borders
propertyTemplate.applyBorders(sheet);
//resizing the columns A:N
for (int c = 0; c < 14; c++) sheet.autoSizeColumn(c, true);
//writing the result
FileOutputStream out = new FileOutputStream("CreateExcelCellStyles.xlsx");
workbook.write(out);
out.close();
workbook.close();
}
}
结果:
上色方法 Illustrator 提供了以下两种上色方法:为整个对象指定填充和 /或描边;将对象转换为实时上色组,并为组内路径的单独边缘和表面指定填充或描边。 为对象上色绘制对象后,您可以为其指定填充和 /或描边。然后可以用类似方法绘制其他可以上色的对象,将每个新的对象一层层地放置在以前的对象上。最终的结果有如一幅由各种形状的彩色剪纸构成的拼贴画,而图稿的外观取决于在这些分层对象组成的堆栈中,哪些
艺术离不开色彩,今天咱们来介绍一下填充颜色,体会一下色彩的魅力。 填充颜色主要分为两种: 基本颜色 渐变颜色(又分为线性渐变与径向渐变) 我们一个个来看。 填充基本颜色 Canvas fillStyle属性用来设置画布上形状的基本颜色和填充。fillStyle使用简单的颜色名称。这看起来非常简单,例如: context.fillStyle = "red"; 下面是出自 HTML4 规范的可用颜色
在本教程中,我们将介绍一些更多的自定义,比如颜色和线条填充。 我们要做的第一个改动是将plt.title更改为stock变量。 plt.title(stock) 现在,让我们来介绍一下如何更改标签颜色。 我们可以通过修改我们的轴对象来实现: ax1.xaxis.label.set_color('c') ax1.yaxis.label.set_color('r') 如果我们运行它,我们会看到标签改变
注意: Adobe Muse 不再添加新增功能,并将于 2020 年 3 月 26 日停止支持。有关详细信息和帮助,请参阅 Adobe Muse 服务结束页面。 Adobe Muse 中的浏览器填充和背景图像 当您规划网站的页面设计时,背景填充是设计的一个非常重要的部分。Adobe Muse 中的背景填充让您可以为您的网站添加背景颜色或图像。您可以使用背景图像传达产品或服务的品牌价值。同样,您还可
问题内容: 有人可以诊断我面临的问题吗?在运行演示时,您可以看到中间部分为空白,我需要填充整个区域。 提前谢谢了 问题答案: 多边形与自身相交。fillPolygon方法无法清楚地确定哪个点在哪个点以及哪个点在哪个点之外。从fillPolygon javadoc: 多边形内部的区域是使用偶数填充规则(也称为交替规则)定义的。 也许您可以将多边形分成三个单个的多边形。
问题内容: 我想以编程方式使用python修改位图,但实际上并不需要深入了解该主题,因此想专心学习完成任务所需的知识。 我追求的这类事情的一个很好的例子是英国及其县的位图图像。最初会在白色背景上在所有县周围显示黑色边框。 到目前为止,还不错,但是如何动态更改县的背景色? 我想着可能会想起一个泛洪程序,该程序的工作原理类似于简单的绘画应用程序。改变指定颜色包围的区域内所有像素的事物。我已经快速浏览了