public class SingleXmlCells extends POIXMLDocumentPart
DEFAULT_XML_OPTIONS
Constructor and Description |
---|
SingleXmlCells() |
SingleXmlCells(PackagePart part,
PackageRelationship rel) |
Modifier and Type | Method and Description |
---|---|
protected void |
commit()
Save the content in the underlying package part.
|
List<XSSFSingleXmlCell> |
getAllSimpleXmlCell() |
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTSingleXmlCells |
getCTSingleXMLCells() |
XSSFSheet |
getXSSFSheet() |
void |
readFrom(InputStream is) |
protected void |
writeTo(OutputStream out) |
addRelation, clearMemoryPackagePart, createRelationship, createRelationship, createRelationship, getPackagePart, getPackageRelationship, getParent, getRelationById, getRelationCounter, getRelationId, getRelations, getTargetPart, onDocumentCreate, onDocumentRead, onDocumentRemove, onSave, read, rebase, removeRelation, removeRelation, toString
public SingleXmlCells()
public SingleXmlCells(PackagePart part, PackageRelationship rel) throws IOException
IOException
public void readFrom(InputStream is) throws IOException
IOException
public XSSFSheet getXSSFSheet()
protected void writeTo(OutputStream out) throws IOException
IOException
protected void commit() throws 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
IOException
public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTSingleXmlCells getCTSingleXMLCells()
public List<XSSFSingleXmlCell> getAllSimpleXmlCell()
Copyright © 2020. All rights reserved.