public class SingleXmlCells extends POIXMLDocumentPart
POIXMLDocumentPart.RelationPart
Constructor and Description |
---|
SingleXmlCells() |
SingleXmlCells(PackagePart part) |
SingleXmlCells(PackagePart part,
PackageRelationship rel)
Deprecated.
in POI 3.14, scheduled for removal in POI 3.16
|
Modifier and Type | Method and Description |
---|---|
protected void |
commit()
Save the content in the underlying package part.
|
java.util.List<XSSFSingleXmlCell> |
getAllSimpleXmlCell() |
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTSingleXmlCells |
getCTSingleXMLCells() |
XSSFSheet |
getXSSFSheet() |
void |
readFrom(java.io.InputStream is) |
protected void |
writeTo(java.io.OutputStream out) |
_invokeOnDocumentRead, addRelation, addRelation, createRelationship, createRelationship, createRelationship, getPackagePart, getPackageRelationship, getParent, getRelationById, getRelationId, getRelationParts, getRelations, getTargetPart, onDocumentCreate, onDocumentRead, onDocumentRemove, onSave, prepareForCommit, read, rebase, removeRelation, removeRelation, toString
public SingleXmlCells()
public SingleXmlCells(PackagePart part) throws java.io.IOException
java.io.IOException
@Deprecated public SingleXmlCells(PackagePart part, PackageRelationship rel) throws java.io.IOException
java.io.IOException
public void readFrom(java.io.InputStream is) throws java.io.IOException
java.io.IOException
public XSSFSheet getXSSFSheet()
protected void writeTo(java.io.OutputStream out) throws java.io.IOException
java.io.IOException
protected void commit() throws java.io.IOException
POIXMLDocumentPart
protected void commit() throws IOException {
PackagePart part = getPackagePart();
OutputStream out = part.getOutputStream();
XmlObject bean = getXmlBean(); //the "model" which holds changes in memory
bean.save(out, DEFAULT_XML_OPTIONS);
out.close();
}
commit
in class POIXMLDocumentPart
java.io.IOException
public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTSingleXmlCells getCTSingleXMLCells()
public java.util.List<XSSFSingleXmlCell> getAllSimpleXmlCell()
Copyright 2016 The Apache Software Foundation or its licensors, as applicable.