java.io.Closeable, java.lang.AutoCloseablepublic final class PowerPointExtractor extends POIOLE2TextExtractor
document| Constructor | Description |
|---|---|
PowerPointExtractor(java.io.InputStream iStream) |
Creates a PowerPointExtractor, from an Input Stream
|
PowerPointExtractor(java.lang.String fileName) |
Creates a PowerPointExtractor, from a file
|
PowerPointExtractor(HSLFSlideShow ss) |
Creates a PowerPointExtractor, from a HSLFSlideShow
|
PowerPointExtractor(DirectoryNode dir) |
Creates a PowerPointExtractor, from a specific place
inside an open NPOIFSFileSystem
|
PowerPointExtractor(DirectoryNode dir,
POIFSFileSystem fs) |
Deprecated.
Use
PowerPointExtractor(DirectoryNode) instead |
PowerPointExtractor(NPOIFSFileSystem fs) |
Creates a PowerPointExtractor, from an open NPOIFSFileSystem
|
PowerPointExtractor(POIFSFileSystem fs) |
Creates a PowerPointExtractor, from an open POIFSFileSystem
|
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.String |
getNotes() |
Fetches all the notes text from the slideshow, but not the slide text
|
java.util.List<OLEShape> |
getOLEShapes() |
|
java.lang.String |
getText() |
Fetches all the slide text from the slideshow, but not the notes, unless
you've called setSlidesByDefault() and setNotesByDefault() to change this
|
java.lang.String |
getText(boolean getSlideText,
boolean getNoteText) |
Fetches text from the slideshow, be it slide text or note text.
|
java.lang.String |
getText(boolean getSlideText,
boolean getNoteText,
boolean getCommentText,
boolean getMasterText) |
|
static void |
main(java.lang.String[] args) |
Basic extractor.
|
void |
setCommentsByDefault(boolean commentsByDefault) |
Should a call to getText() return comments text? Default is no
|
void |
setMasterByDefault(boolean masterByDefault) |
Should a call to getText() return text from master? Default is no
|
void |
setNotesByDefault(boolean notesByDefault) |
Should a call to getText() return notes text? Default is no
|
void |
setSlidesByDefault(boolean slidesByDefault) |
Should a call to getText() return slide text? Default is yes
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetDocSummaryInformation, getFileSystem, getMetadataTextExtractor, getRoot, getSummaryInformationclosepublic PowerPointExtractor(java.lang.String fileName)
throws java.io.IOException
fileName - The name of the file to extract fromjava.io.IOExceptionpublic PowerPointExtractor(java.io.InputStream iStream)
throws java.io.IOException
iStream - The input stream containing the PowerPoint documentjava.io.IOExceptionpublic PowerPointExtractor(POIFSFileSystem fs) throws java.io.IOException
fs - the POIFSFileSystem containing the PowerPoint documentjava.io.IOExceptionpublic PowerPointExtractor(NPOIFSFileSystem fs) throws java.io.IOException
fs - the NPOIFSFileSystem containing the PowerPoint documentjava.io.IOExceptionpublic PowerPointExtractor(DirectoryNode dir) throws java.io.IOException
dir - the POIFS Directory containing the PowerPoint documentjava.io.IOException@Deprecated public PowerPointExtractor(DirectoryNode dir, POIFSFileSystem fs) throws java.io.IOException
PowerPointExtractor(DirectoryNode) insteadjava.io.IOExceptionpublic PowerPointExtractor(HSLFSlideShow ss)
ss - the HSLFSlideShow to extract text frompublic static void main(java.lang.String[] args)
throws java.io.IOException
java.io.IOExceptionpublic void setSlidesByDefault(boolean slidesByDefault)
public void setNotesByDefault(boolean notesByDefault)
public void setCommentsByDefault(boolean commentsByDefault)
public void setMasterByDefault(boolean masterByDefault)
public java.lang.String getText()
getText in class POITextExtractorpublic java.lang.String getNotes()
public java.util.List<OLEShape> getOLEShapes()
public java.lang.String getText(boolean getSlideText,
boolean getNoteText)
getSlideText - fetch slide textgetNoteText - fetch note textpublic java.lang.String getText(boolean getSlideText,
boolean getNoteText,
boolean getCommentText,
boolean getMasterText)
Copyright 2018 The Apache Software Foundation or its licensors, as applicable.