mirror of https://github.com/apache/poi.git
allow HSSFSharedString
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902673 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e39ab54eff
commit
7ab3352712
|
@ -354,12 +354,18 @@ public final class XSSFCell extends CellBase {
|
|||
if(_cell.getT() == STCellType.INLINE_STR) {
|
||||
//set the 'pre-evaluated result
|
||||
_cell.setV(str.getString());
|
||||
} else {
|
||||
} else if (str instanceof XSSFRichTextString) {
|
||||
_cell.setT(STCellType.S);
|
||||
XSSFRichTextString rt = (XSSFRichTextString)str;
|
||||
rt.setStylesTableReference(_stylesSource);
|
||||
int sRef = _sharedStringSource.addSharedStringItem(rt);
|
||||
_cell.setV(Integer.toString(sRef));
|
||||
} else {
|
||||
_cell.setT(STCellType.S);
|
||||
XSSFRichTextString rt = new XSSFRichTextString(str.getString());
|
||||
rt.setStylesTableReference(_stylesSource);
|
||||
int sRef = _sharedStringSource.addSharedStringItem(rt);
|
||||
_cell.setV(Integer.toString(sRef));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue