mirror of https://github.com/apache/poi.git
use non deprecated method for adding string to shared strings table
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1818623 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0ad8c53743
commit
2a63c7e75d
|
@ -193,7 +193,7 @@ public class SharedStringsTable extends POIXMLDocumentPart {
|
||||||
* @return index the index of added entry
|
* @return index the index of added entry
|
||||||
* @deprecated use <code>addSharedStringItem(RichTextString string)</code> instead
|
* @deprecated use <code>addSharedStringItem(RichTextString string)</code> instead
|
||||||
*/
|
*/
|
||||||
@Removal(version = "4.2")
|
@Removal(version = "4.2") //make private in 4.2
|
||||||
public int addEntry(CTRst st) {
|
public int addEntry(CTRst st) {
|
||||||
String s = getKey(st);
|
String s = getKey(st);
|
||||||
count++;
|
count++;
|
||||||
|
@ -278,8 +278,8 @@ public class SharedStringsTable extends POIXMLDocumentPart {
|
||||||
@Override
|
@Override
|
||||||
protected void commit() throws IOException {
|
protected void commit() throws IOException {
|
||||||
PackagePart part = getPackagePart();
|
PackagePart part = getPackagePart();
|
||||||
OutputStream out = part.getOutputStream();
|
try (OutputStream out = part.getOutputStream()) {
|
||||||
writeTo(out);
|
writeTo(out);
|
||||||
out.close();
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -280,7 +280,7 @@ public class SheetDataWriter implements Closeable {
|
||||||
case STRING: {
|
case STRING: {
|
||||||
if (_sharedStringSource != null) {
|
if (_sharedStringSource != null) {
|
||||||
XSSFRichTextString rt = new XSSFRichTextString(cell.getStringCellValue());
|
XSSFRichTextString rt = new XSSFRichTextString(cell.getStringCellValue());
|
||||||
int sRef = _sharedStringSource.addEntry(rt.getCTRst());
|
int sRef = _sharedStringSource.addSharedStringItem(rt);
|
||||||
|
|
||||||
writeAttribute("t", STCellType.S.toString());
|
writeAttribute("t", STCellType.S.toString());
|
||||||
_out.write("><v>");
|
_out.write("><v>");
|
||||||
|
|
Loading…
Reference in New Issue