我有一个库apache poi的问题,我想复制一个单元格的样式,并且这样做我使用函数cloneStyleFrom()并且除了边框样式的副本之外一切正常。我不明白我的错误是否是这个函数没有实现边框样式的副本。
这是我的代码:
int stHashCode = oldCell.getCellStyle().hashCode();
XSSFCellStyle newCellStyle = styleMap.get(stHashCode);
if (newCellStyle == null) {
newCellStyle = newCell.getSheet().getWorkbook().createCellStyle();
newCellStyle.cloneStyleFrom(oldCell.getCellStyle());
styleMap.put(stHashCode, newCellStyle);
}
newCell.setCellStyle(newCellStyle);
有人可以帮帮我吗?我的错误在哪里?
由于