Uses of Class
org.apache.tika.exception.TikaException

Packages that use TikaException
org.apache.tika Apache Tika. 
org.apache.tika.config Tika configuration tools. 
org.apache.tika.exception Tika exception. 
org.apache.tika.extractor Extraction of component documents. 
org.apache.tika.fork Forked parser. 
org.apache.tika.io IO utilities. 
org.apache.tika.language Language detection. 
org.apache.tika.mime Media type information. 
org.apache.tika.parser Tika parsers. 
org.apache.tika.parser.asm   
org.apache.tika.parser.audio   
org.apache.tika.parser.chm   
org.apache.tika.parser.chm.accessor   
org.apache.tika.parser.chm.assertion   
org.apache.tika.parser.chm.core   
org.apache.tika.parser.chm.exception   
org.apache.tika.parser.chm.lzx   
org.apache.tika.parser.dwg   
org.apache.tika.parser.epub   
org.apache.tika.parser.external External parser process. 
org.apache.tika.parser.feed   
org.apache.tika.parser.font   
org.apache.tika.parser.hdf   
org.apache.tika.parser.html   
org.apache.tika.parser.image   
org.apache.tika.parser.image.xmp   
org.apache.tika.parser.iwork   
org.apache.tika.parser.jpeg   
org.apache.tika.parser.mail   
org.apache.tika.parser.mbox   
org.apache.tika.parser.microsoft   
org.apache.tika.parser.microsoft.ooxml   
org.apache.tika.parser.mp3   
org.apache.tika.parser.netcdf   
org.apache.tika.parser.odf   
org.apache.tika.parser.pdf   
org.apache.tika.parser.pkg   
org.apache.tika.parser.prt   
org.apache.tika.parser.rtf   
org.apache.tika.parser.txt   
org.apache.tika.parser.video   
org.apache.tika.parser.xml   
org.apache.tika.sax SAX utilities. 
 

Uses of TikaException in org.apache.tika
 

Methods in org.apache.tika that throw TikaException
 String Tika.parseToString(File file)
          Parses the given file and returns the extracted text content.
 String Tika.parseToString(InputStream stream)
          Parses the given document and returns the extracted text content.
 String Tika.parseToString(InputStream stream, Metadata metadata)
          Parses the given document and returns the extracted text content.
 String Tika.parseToString(URL url)
          Parses the resource at the given URL and returns the extracted text content.
 

Uses of TikaException in org.apache.tika.config
 

Constructors in org.apache.tika.config that throw TikaException
TikaConfig()
          Creates a default Tika configuration.
TikaConfig(Document document)
           
TikaConfig(Element element)
           
TikaConfig(Element element, ClassLoader loader)
           
TikaConfig(File file)
           
TikaConfig(InputStream stream)
           
TikaConfig(String file)
           
TikaConfig(URL url)
           
TikaConfig(URL url, ClassLoader loader)
           
 

Uses of TikaException in org.apache.tika.exception
 

Subclasses of TikaException in org.apache.tika.exception
 class EncryptedDocumentException
           
 

Uses of TikaException in org.apache.tika.extractor
 

Methods in org.apache.tika.extractor that throw TikaException
 void ParserContainerExtractor.extract(TikaInputStream stream, ContainerExtractor recurseExtractor, EmbeddedResourceHandler handler)
           
 void ContainerExtractor.extract(TikaInputStream stream, ContainerExtractor recurseExtractor, EmbeddedResourceHandler handler)
          Processes a container file, and extracts all the embedded resources from within it.
 

Uses of TikaException in org.apache.tika.fork
 

Methods in org.apache.tika.fork that throw TikaException
 void ForkParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.io
 

Subclasses of TikaException in org.apache.tika.io
static class EndianUtils.BufferUnderrunException
           
 

Methods in org.apache.tika.io that throw TikaException
 void TemporaryResources.dispose()
          Calls the TemporaryResources.close() method and wraps the potential IOException into a TikaException for convenience when used within Tika.
 

Uses of TikaException in org.apache.tika.language
 

Methods in org.apache.tika.language that throw TikaException
static LanguageProfilerBuilder LanguageProfilerBuilder.create(String name, InputStream is, String encoding)
          Creates a new Language profile from (preferably quite large - 5-10k of lines) text file
 float LanguageProfilerBuilder.getSimilarity(LanguageProfilerBuilder another)
          Calculates a score how well NGramProfiles match each other
 

Uses of TikaException in org.apache.tika.mime
 

Subclasses of TikaException in org.apache.tika.mime
 class MimeTypeException
          A class to encapsulate MimeType related exceptions.
 

Uses of TikaException in org.apache.tika.parser
 

Methods in org.apache.tika.parser that throw TikaException
 SAXParser ParseContext.getSAXParser()
          Returns the SAX parser specified in this parsing context.
 void AutoDetectParser.parse(InputStream stream, ContentHandler handler, Metadata metadata)
           
 void AbstractParser.parse(InputStream stream, ContentHandler handler, Metadata metadata)
          Deprecated. use the Parser.parse(InputStream, ContentHandler, Metadata, ParseContext) method instead
 void ParserPostProcessor.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
          Forwards the call to the delegated parser and post-processes the results as described above.
 void ParserDecorator.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
          Delegates the method call to the decorated parser.
 void Parser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
          Parses a document stream into a sequence of XHTML SAX events.
 void NetworkParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 void ErrorParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 void DelegatingParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
          Looks up the delegate parser from the parsing context and delegates the parse operation to it.
 void CryptoParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 void CompositeParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
          Delegates the call to the matching component parser.
 void AutoDetectParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.asm
 

Methods in org.apache.tika.parser.asm that throw TikaException
 void ClassParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.audio
 

Methods in org.apache.tika.parser.audio that throw TikaException
 void MidiParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 void AudioParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.chm
 

Methods in org.apache.tika.parser.chm that throw TikaException
 void CHMDocumentInformation.getCHMDocInformation(Metadata metadata)
          Returns chm metadata
 String CHMDocumentInformation.getText()
          Returns extracted text from chm file
protected  String CHM2XHTML.getText(CHMDocumentInformation chmDoc)
           
static CHMDocumentInformation CHMDocumentInformation.load(InputStream is)
          Loads chm file as input stream and returns a new instance of chm doc info
 void ChmParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
static void CHM2XHTML.process(CHMDocumentInformation chmDoc, ContentHandler handler)
           
 

Uses of TikaException in org.apache.tika.parser.chm.accessor
 

Methods in org.apache.tika.parser.chm.accessor that throw TikaException
 void ChmItsfHeader.parse(byte[] data, ChmItsfHeader chmItsfHeader)
           
 void ChmItspHeader.parse(byte[] data, ChmItspHeader chmItspHeader)
           
 void ChmLzxcControlData.parse(byte[] data, ChmLzxcControlData chmLzxcControlData)
           
 void ChmLzxcResetTable.parse(byte[] data, ChmLzxcResetTable chmLzxcResetTable)
           
 void ChmPmgiHeader.parse(byte[] data, ChmPmgiHeader chmPmgiHeader)
           
 void ChmPmglHeader.parse(byte[] data, ChmPmglHeader chmPmglHeader)
           
 void ChmAccessor.parse(byte[] data, T chmAccessor)
          Parses chm accessor
protected  void ChmPmglHeader.unmarshalCharArray(byte[] data, ChmPmglHeader chmPmglHeader, int count)
           
 

Constructors in org.apache.tika.parser.chm.accessor that throw TikaException
ChmDirectoryListingSet(byte[] data, ChmItsfHeader chmItsHeader, ChmItspHeader chmItspHeader)
          Constructs chm directory listing set
DirectoryListingEntry(int name_length, String name, ChmCommons.EntryType isCompressed, int offset, int length)
          Constructs directoryListingEntry
 

Uses of TikaException in org.apache.tika.parser.chm.assertion
 

Methods in org.apache.tika.parser.chm.assertion that throw TikaException
static void ChmAssert.assertChmBlockSegment(byte[] data, ChmLzxcResetTable resetTable, int blockNumber, int lzxcBlockOffset, int lzxcBlockLength)
          Checks a validity of the chmBlockSegment parameters
 

Uses of TikaException in org.apache.tika.parser.chm.core
 

Methods in org.apache.tika.parser.chm.core that throw TikaException
static void ChmCommons.assertByteArrayNotNull(byte[] data)
           
 byte[][] ChmExtractor.extractChmEntry(DirectoryListingEntry directoryListingEntry)
          Decompresses a chm entry
static byte[] ChmCommons.getChmBlockSegment(byte[] data, ChmLzxcResetTable resetTable, int blockNumber, int lzxcBlockOffset, int lzxcBlockLength)
           
static void ChmCommons.writeFile(byte[][] buffer, String fileToBeSaved)
          Writes byte[][] to the file
 

Constructors in org.apache.tika.parser.chm.core that throw TikaException
ChmExtractor(InputStream is)
           
 

Uses of TikaException in org.apache.tika.parser.chm.exception
 

Subclasses of TikaException in org.apache.tika.parser.chm.exception
 class ChmParsingException
           
 

Uses of TikaException in org.apache.tika.parser.chm.lzx
 

Methods in org.apache.tika.parser.chm.lzx that throw TikaException
 void ChmLzxBlock.decompressAlignedBlock(int len, byte[] prevcontent)
           
protected  ChmBlockInfo ChmBlockInfo.getChmBlockInfo(DirectoryListingEntry dle, int bytesPerBlock, ChmLzxcControlData clcd, ChmBlockInfo chmBlockInfo)
          Returns an information related to the chmBlockInfo
protected  short[] ChmLzxState.getLengthTreeTable()
           
static void ChmSection.main(String[] args)
           
 byte[] ChmSection.reverseByteOrder(byte[] toBeReversed)
           
 

Constructors in org.apache.tika.parser.chm.lzx that throw TikaException
ChmLzxState(int window)
           
ChmSection(byte[] data)
           
 

Uses of TikaException in org.apache.tika.parser.dwg
 

Methods in org.apache.tika.parser.dwg that throw TikaException
 void DWGParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.epub
 

Methods in org.apache.tika.parser.epub that throw TikaException
 void EpubParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 void EpubContentParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.external
 

Methods in org.apache.tika.parser.external that throw TikaException
static void ExternalParsersFactory.attachExternalParsers(TikaConfig config)
           
static List<ExternalParser> ExternalParsersFactory.create()
           
static List<ExternalParser> ExternalParsersFactory.create(ServiceLoader loader)
           
static List<ExternalParser> ExternalParsersFactory.create(String filename, ServiceLoader loader)
           
static List<ExternalParser> ExternalParsersFactory.create(URL... urls)
           
 void ExternalParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
          Executes the configured external command and passes the given document stream as a simple XHTML document to the given SAX content handler.
static List<ExternalParser> ExternalParsersConfigReader.read(Document document)
           
static List<ExternalParser> ExternalParsersConfigReader.read(Element element)
           
static List<ExternalParser> ExternalParsersConfigReader.read(InputStream stream)
           
 

Constructors in org.apache.tika.parser.external that throw TikaException
CompositeExternalParser()
           
CompositeExternalParser(MediaTypeRegistry registry)
           
 

Uses of TikaException in org.apache.tika.parser.feed
 

Methods in org.apache.tika.parser.feed that throw TikaException
 void FeedParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.font
 

Methods in org.apache.tika.parser.font that throw TikaException
 void TrueTypeParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.hdf
 

Methods in org.apache.tika.parser.hdf that throw TikaException
 void HDFParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.html
 

Methods in org.apache.tika.parser.html that throw TikaException
 void HtmlParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.image
 

Methods in org.apache.tika.parser.image that throw TikaException
 void TiffParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 void PSDParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 void ImageParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 void ImageMetadataExtractor.parseJpeg(File file)
           
protected  void ImageMetadataExtractor.parseTiff(InputStream stream)
           
 

Uses of TikaException in org.apache.tika.parser.image.xmp
 

Methods in org.apache.tika.parser.image.xmp that throw TikaException
 void JempboxExtractor.parse(InputStream file)
           
 

Uses of TikaException in org.apache.tika.parser.iwork
 

Methods in org.apache.tika.parser.iwork that throw TikaException
 void IWorkPackageParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.jpeg
 

Methods in org.apache.tika.parser.jpeg that throw TikaException
 void JpegParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.mail
 

Methods in org.apache.tika.parser.mail that throw TikaException
 void RFC822Parser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.mbox
 

Methods in org.apache.tika.parser.mbox that throw TikaException
 void MboxParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.microsoft
 

Methods in org.apache.tika.parser.microsoft that throw TikaException
protected  void OfficeParser.parse(org.apache.poi.poifs.filesystem.DirectoryNode root, ParseContext context, Metadata metadata, XHTMLContentHandler xhtml)
           
protected  void WordExtractor.parse(org.apache.poi.poifs.filesystem.DirectoryNode root, XHTMLContentHandler xhtml)
           
protected  void HSLFExtractor.parse(org.apache.poi.poifs.filesystem.DirectoryNode root, XHTMLContentHandler xhtml)
           
protected  void ExcelExtractor.parse(org.apache.poi.poifs.filesystem.DirectoryNode root, XHTMLContentHandler xhtml, Locale locale)
           
 void TNEFParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
          Extracts properties and text from an MS Document input stream
 void OfficeParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
          Extracts properties and text from an MS Document input stream
protected  void WordExtractor.parse(org.apache.poi.poifs.filesystem.NPOIFSFileSystem filesystem, XHTMLContentHandler xhtml)
           
protected  void HSLFExtractor.parse(org.apache.poi.poifs.filesystem.NPOIFSFileSystem filesystem, XHTMLContentHandler xhtml)
           
protected  void ExcelExtractor.parse(org.apache.poi.poifs.filesystem.NPOIFSFileSystem filesystem, XHTMLContentHandler xhtml, Locale locale)
          Extracts text from an Excel Workbook writing the extracted content to the specified Appendable.
 void OutlookExtractor.parse(XHTMLContentHandler xhtml, Metadata metadata)
           
protected  void WordExtractor.parseWord6(org.apache.poi.poifs.filesystem.DirectoryNode root, XHTMLContentHandler xhtml)
           
protected  void WordExtractor.parseWord6(org.apache.poi.poifs.filesystem.NPOIFSFileSystem filesystem, XHTMLContentHandler xhtml)
           
 

Constructors in org.apache.tika.parser.microsoft that throw TikaException
OutlookExtractor(org.apache.poi.poifs.filesystem.DirectoryNode root, ParseContext context)
           
OutlookExtractor(org.apache.poi.poifs.filesystem.NPOIFSFileSystem filesystem, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.microsoft.ooxml
 

Methods in org.apache.tika.parser.microsoft.ooxml that throw TikaException
 void MetadataExtractor.extract(Metadata metadata)
           
protected  List<org.apache.poi.openxml4j.opc.PackagePart> XSSFExcelExtractorDecorator.getMainDocumentParts()
          In Excel files, sheets have things embedded in them, and sheet drawings which have the images
protected  List<org.apache.poi.openxml4j.opc.PackagePart> XSLFPowerPointExtractorDecorator.getMainDocumentParts()
          In PowerPoint files, slides have things embedded in them, and slide drawings which have the images
protected abstract  List<org.apache.poi.openxml4j.opc.PackagePart> AbstractOOXMLExtractor.getMainDocumentParts()
          Return a list of the main parts of the document, used when searching for embedded resources.
 void OOXMLExtractor.getXHTML(ContentHandler handler, Metadata metadata, ParseContext context)
          Parses the document into a sequence of XHTML SAX events sent to the given content handler.
 void AbstractOOXMLExtractor.getXHTML(ContentHandler handler, Metadata metadata, ParseContext context)
           
 void OOXMLParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
static void OOXMLExtractorFactory.parse(InputStream stream, ContentHandler baseHandler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.mp3
 

Methods in org.apache.tika.parser.mp3 that throw TikaException
protected static Mp3Parser.ID3TagsAndAudio Mp3Parser.getAllTagHandlers(InputStream stream, ContentHandler handler)
          Scans the MP3 frames for ID3 tags, and creates ID3Tag Handlers for each supported set of tags.
 void Mp3Parser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Constructors in org.apache.tika.parser.mp3 that throw TikaException
AudioFrame(InputStream stream, ContentHandler handler)
           
ID3v1Handler(byte[] tagData)
          Creates from the last 128 bytes of a stream.
ID3v1Handler(InputStream stream, ContentHandler handler)
           
ID3v22Handler(ID3v2Frame frame)
           
ID3v23Handler(ID3v2Frame frame)
           
ID3v24Handler(ID3v2Frame frame)
           
LyricsHandler(byte[] tagData)
          Looks for the Lyrics data, which will be just before the ID3v1 data (if present), and process it.
LyricsHandler(InputStream stream, ContentHandler handler)
           
 

Uses of TikaException in org.apache.tika.parser.netcdf
 

Methods in org.apache.tika.parser.netcdf that throw TikaException
 void NetCDFParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.odf
 

Methods in org.apache.tika.parser.odf that throw TikaException
 void OpenDocumentParser.parse(InputStream stream, ContentHandler baseHandler, Metadata metadata, ParseContext context)
           
 void OpenDocumentContentParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.pdf
 

Methods in org.apache.tika.parser.pdf that throw TikaException
 void PDFParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.pkg
 

Methods in org.apache.tika.parser.pkg that throw TikaException
 void PackageParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.prt
 

Methods in org.apache.tika.parser.prt that throw TikaException
 void PRTParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.rtf
 

Methods in org.apache.tika.parser.rtf that throw TikaException
 void RTFParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.txt
 

Methods in org.apache.tika.parser.txt that throw TikaException
 void TXTParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.video
 

Methods in org.apache.tika.parser.video that throw TikaException
 void FLVParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.parser.xml
 

Methods in org.apache.tika.parser.xml that throw TikaException
 void XMLParser.parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)
           
 

Uses of TikaException in org.apache.tika.sax
 

Methods in org.apache.tika.sax that throw TikaException
 void SecureContentHandler.throwIfCauseOf(SAXException e)
          Converts the given SAXException to a corresponding TikaException if it's caused by this instance detecting a zip bomb.
 



Copyright © 2007-2011 The Apache Software Foundation. All Rights Reserved.