Results 1 to 3 of 3
- 04-02-2012, 11:56 PM #1
Member
- Join Date
- Apr 2012
- Posts
- 2
- Rep Power
- 0
How to copy cell styles in an XSSFWorkbook?
Hi,
I'm using
and trying to copy information from in a worksheet from one XLSX workbook to a new worksheet in a different workbook. I am trying this ...Java Code:<dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>3.5-beta5</version> </dependency>
However, the code is dying withJava Code:final Cell newCell = newRow.createCell(colNum); newCell.setCellValue(oldCellValue); final CellStyle newCellStyle = newWorkbook.createCellStyle(); newCellStyle.cloneStyleFrom(oldCell.getCellStyle()); newCell.setCellStyle(newCellStyle);
What is the correct way to copy a cell style from a cell in one workbook to a different cell in a new workbook? Thanks, - DaveJava Code:java.lang.StackOverflowError at org.apache.poi.xssf.usermodel.XSSFCellStyle.cloneStyleFrom(XSSFCellStyle.java:113) at org.apache.poi.xssf.usermodel.XSSFCellStyle.cloneStyleFrom(XSSFCellStyle.java:114) ...
- 04-03-2012, 09:34 AM #2
Moderator
- Join Date
- Apr 2009
- Posts
- 10,484
- Rep Power
- 16
Re: How to copy cell styles in an XSSFWorkbook?
It's a bug, which is not unheard of in a Beta.
This is the code for that method:
Go up to Beta6 which has this working properly.Java Code:public void cloneStyleFrom(CellStyle source) { if(source instanceof XSSFCellStyle) { this.cloneStyleFrom(source); } throw new IllegalArgumentException("Can only clone from one XSSFCellStyle to another, not between HSSFCellStyle and XSSFCellStyle"); }Please do not ask for code as refusal often offends.
- 04-03-2012, 05:36 PM #3
Member
- Join Date
- Apr 2012
- Posts
- 2
- Rep Power
- 0
Similar Threads
-
Dynamic Content and Styles problem...
By ThisIsPathetic in forum New To JavaReplies: 1Last Post: 03-20-2011, 07:24 PM -
JTextPane Styles Example
By Java Tip in forum javax.swingReplies: 0Last Post: 06-27-2008, 07:48 PM -
Java2D Line Styles
By Java Tip in forum java.awtReplies: 0Last Post: 06-22-2008, 11:05 PM -
JOptionPane - message styles
By Java Tip in forum Java TipReplies: 0Last Post: 12-17-2007, 09:20 AM -
JExcel: Copy a cell content from one sheet to another sheet in the same workbook.
By ukbasak in forum Advanced JavaReplies: 0Last Post: 08-02-2007, 12:31 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks