org.apache.poi.xssf.eventusermodel
Class ReadOnlySharedStringsTable
- java.lang.Object
-
- org.xml.sax.helpers.DefaultHandler
-
- org.apache.poi.xssf.eventusermodel.ReadOnlySharedStringsTable
-
- All Implemented Interfaces:
- org.xml.sax.ContentHandler, org.xml.sax.DTDHandler, org.xml.sax.EntityResolver, org.xml.sax.ErrorHandler
public class ReadOnlySharedStringsTable extends org.xml.sax.helpers.DefaultHandlerThis is a lightweight way to process the Shared Strings table. Most of the text cells will reference something from in here.
Note that each SI entry can have multiple T elements, if the string is made up of bits with different formatting.
Example input:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <sst xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" count="2" uniqueCount="2"> <si> <r> <rPr> <b /> <sz val="11" /> <color theme="1" /> <rFont val="Calibri" /> <family val="2" /> <scheme val="minor" /> </rPr> <t>This:</t> </r> <r> <rPr> <sz val="11" /> <color theme="1" /> <rFont val="Calibri" /> <family val="2" /> <scheme val="minor" /> </rPr> <t xml:space="preserve">Causes Problems</t> </r> </si> <si> <t>This does not</t> </si> </sst>
-
-
Constructor Summary
Constructors Constructor and Description ReadOnlySharedStringsTable(OPCPackage pkg)ReadOnlySharedStringsTable(PackagePart part, PackageRelationship rel_ignored)Like POIXMLDocumentPart constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description voidcharacters(char[] ch, int start, int length)Captures characters only if a t(ext) element is open.voidendElement(java.lang.String uri, java.lang.String localName, java.lang.String name)intgetCount()Return an integer representing the total count of strings in the workbook.java.lang.StringgetEntryAt(int idx)Return the string at a given index.java.util.List<java.lang.String>getItems()intgetUniqueCount()Returns an integer representing the total count of unique strings in the Shared String Table.voidreadFrom(java.io.InputStream is)Read this shared strings table from an XML file.voidstartElement(java.lang.String uri, java.lang.String localName, java.lang.String name, org.xml.sax.Attributes attributes)
-
-
-
Constructor Detail
-
ReadOnlySharedStringsTable
public ReadOnlySharedStringsTable(OPCPackage pkg) throws java.io.IOException, org.xml.sax.SAXException
- Parameters:
pkg-- Throws:
java.io.IOExceptionorg.xml.sax.SAXExceptionjavax.xml.parsers.ParserConfigurationException
-
ReadOnlySharedStringsTable
public ReadOnlySharedStringsTable(PackagePart part, PackageRelationship rel_ignored) throws java.io.IOException, org.xml.sax.SAXException
Like POIXMLDocumentPart constructor- Parameters:
part-rel_ignored-- Throws:
java.io.IOExceptionorg.xml.sax.SAXException
-
-
Method Detail
-
readFrom
public void readFrom(java.io.InputStream is) throws java.io.IOException, org.xml.sax.SAXExceptionRead this shared strings table from an XML file.- Parameters:
is- The input stream containing the XML document.- Throws:
java.io.IOException- if an error occurs while reading.org.xml.sax.SAXExceptionjavax.xml.parsers.ParserConfigurationException
-
getCount
public int getCount()
Return an integer representing the total count of strings in the workbook. This count does not include any numbers, it counts only the total of text strings in the workbook.- Returns:
- the total count of strings in the workbook
-
getUniqueCount
public int getUniqueCount()
Returns an integer representing the total count of unique strings in the Shared String Table. A string is unique even if it is a copy of another string, but has different formatting applied at the character level.- Returns:
- the total count of unique strings in the workbook
-
getEntryAt
public java.lang.String getEntryAt(int idx)
Return the string at a given index. Formatting is ignored.- Parameters:
idx- index of item to return.- Returns:
- the item at the specified position in this Shared String table.
-
getItems
public java.util.List<java.lang.String> getItems()
-
startElement
public void startElement(java.lang.String uri, java.lang.String localName, java.lang.String name, org.xml.sax.Attributes attributes) throws org.xml.sax.SAXException- Specified by:
startElementin interfaceorg.xml.sax.ContentHandler- Overrides:
startElementin classorg.xml.sax.helpers.DefaultHandler- Throws:
org.xml.sax.SAXException
-
endElement
public void endElement(java.lang.String uri, java.lang.String localName, java.lang.String name) throws org.xml.sax.SAXException- Specified by:
endElementin interfaceorg.xml.sax.ContentHandler- Overrides:
endElementin classorg.xml.sax.helpers.DefaultHandler- Throws:
org.xml.sax.SAXException
-
characters
public void characters(char[] ch, int start, int length) throws org.xml.sax.SAXExceptionCaptures characters only if a t(ext) element is open.- Specified by:
charactersin interfaceorg.xml.sax.ContentHandler- Overrides:
charactersin classorg.xml.sax.helpers.DefaultHandler- Throws:
org.xml.sax.SAXException
-
-
DataMelt 3.0 © DataMelt by jWork.ORG