Package com.logicaldoc.core.parser
Class ZipParser
java.lang.Object
com.logicaldoc.core.parser.AbstractParser
com.logicaldoc.core.parser.ZipParser
- All Implemented Interfaces:
Parser
Class for parsing zip files.
- Since:
- 3.5
- Author:
- Michael Scholz, Alessandro Gasparini - LogicalDOC
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintcountPages(File input, String filename) The number of pages is the number entriesintcountPages(InputStream input, String filename) Counts the number of pages of the given binary document.voidinternalParse(InputStream input, ParseParameters parameters, StringBuilder content) Methods inherited from class com.logicaldoc.core.parser.AbstractParser
parse, parse, parse, parse
-
Constructor Details
-
ZipParser
public ZipParser()
-
-
Method Details
-
internalParse
public void internalParse(InputStream input, ParseParameters parameters, StringBuilder content) throws IOException, ParsingException - Throws:
IOExceptionParsingException
-
countPages
Description copied from interface:ParserCounts the number of pages of the given binary document.- Specified by:
countPagesin interfaceParser- Overrides:
countPagesin classAbstractParser- Parameters:
input- binary content from which to extract the textfilename- name of the file- Returns:
- the number of pages
-
countPages
The number of pages is the number entries- Specified by:
countPagesin interfaceParser- Overrides:
countPagesin classAbstractParser- Parameters:
input- the filefilename- name of the file- Returns:
- the number of pages
-