From 41d2b72f496f32fef99a2964c1bfd4e3d063b739 Mon Sep 17 00:00:00 2001 From: Yegor Kozlov Date: Sun, 13 Sep 2009 14:53:51 +0000 Subject: [PATCH] added javadoc how to avoid Excel crash when creating too many HSSFRichTextString cells, see Bugzilla 47543 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@814324 13f79535-47bb-0310-9956-ffa450edef68 --- src/documentation/content/xdocs/status.xml | 1 + .../hssf/usermodel/HSSFRichTextString.java | 38 +++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/src/documentation/content/xdocs/status.xml b/src/documentation/content/xdocs/status.xml index c409671616..7fd8eccf43 100644 --- a/src/documentation/content/xdocs/status.xml +++ b/src/documentation/content/xdocs/status.xml @@ -33,6 +33,7 @@ + 47543 - added javadoc how to avoid Excel crash when creating too many HSSFRichTextString cells 47813 - fixed problems with XSSFWorkbook.removeSheetAt when workbook contains chart 47737 - adjust sheet indices of named ranges when deleting sheets 47770 - built-in positive formats don't need starting '(' diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFRichTextString.java b/src/java/org/apache/poi/hssf/usermodel/HSSFRichTextString.java index dee0a455a5..269cabe423 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFRichTextString.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFRichTextString.java @@ -28,6 +28,44 @@ import org.apache.poi.ss.usermodel.RichTextString; * Rich text unicode string. These strings can have fonts applied to * arbitary parts of the string. * + *

+ * Note, that in certain cases creating too many HSSFRichTextString cells may cause Excel 2003 and lower to crash + * when changing the color of the cells and then saving the Excel file. Compare two snippets that produce equivalent output: + * + *

+ *  HSSFCell hssfCell = row.createCell(idx);
+ *  //rich text consists of two runs
+ *  HSSFRichTextString richString = new HSSFRichTextString( "Hello, World!" );
+ *  richString.applyFont( 0, 6, font1 );
+ *  richString.applyFont( 6, 13, font2 );
+ *  hssfCell.setCellValue( richString );
+ * 
+ * + * and + * + *

+ *  //create a cell style and assign the first font to it
+ *  HSSFCellStyle style = workbook.createCellStyle();
+ *  style.setFont(font1);
+ *
+ *  HSSFCell hssfCell = row.createCell(idx);
+ *  hssfCell.setCellStyle(style);
+ *
+ *  //rich text consists of one run overriding the cell style
+ *  HSSFRichTextString richString = new HSSFRichTextString( "Hello, World!" );
+ *  richString.applyFont( 6, 13, font2 );
+ *  hssfCell.setCellValue( richString );
+ * 

+ * + * Excel always uses the latter approach: for a reach text containing N runs Excel saves the font of the first run in the cell's + * style and subsequent N-1 runs override this font. + * + *

For more information regarding this behavior please consult Bugzilla 47543: + * + * + * https://issues.apache.org/bugzilla/show_bug.cgi?id=47543 + *

+ * * @author Glen Stampoultzis (glens at apache.org) * @author Jason Height (jheight at apache.org) */ -- 2.39.5