Package com.logicaldoc.core.parser
Class TarParser
java.lang.Object
com.logicaldoc.core.parser.AbstractParser
com.logicaldoc.core.parser.TarParser
- All Implemented Interfaces:
Parser
Class for parsing tar files.
- Since:
- 8.7.1
- Author:
- Marco Meschieri - LogicalDOC
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
countPages
(File input, String filename) Same as the otherParser.countPages(InputStream, String)
, but use this when you have a file rather than a stream.int
countPages
(InputStream input, String filename) The number of pages is the number entriesvoid
internalParse
(InputStream input, ParseParameters parameters, StringBuilder content) Methods inherited from class com.logicaldoc.core.parser.AbstractParser
parse, parse, parse, parse
-
Constructor Details
-
TarParser
public TarParser()
-
-
Method Details
-
internalParse
public void internalParse(InputStream input, ParseParameters parameters, StringBuilder content) throws IOException, ParsingException - Throws:
IOException
ParsingException
-
countPages
The number of pages is the number entries- Specified by:
countPages
in interfaceParser
- Overrides:
countPages
in classAbstractParser
- Parameters:
input
- binary content from which to extract the textfilename
- name of the file- Returns:
- the number of pages
-
countPages
Description copied from interface:Parser
Same as the otherParser.countPages(InputStream, String)
, but use this when you have a file rather than a stream.- Specified by:
countPages
in interfaceParser
- Overrides:
countPages
in classAbstractParser
- Parameters:
input
- the filefilename
- name of the file- Returns:
- the number of pages
-