Package org.albite.book.model.parser

Examples of org.albite.book.model.parser.HTMLTextParser


    public EPubBook(final String filename)
            throws IOException, BookException {

        this.bookURL = filename;
        this.parser = new HTMLTextParser();
        bookArchive = new ArchiveZip(filename);
        language = null;

        try {
            /*
 
View Full Code Here


                || filenameLowerCase.endsWith(XHTML_EXTENSION)) {
            return new FileBook(
                    filename,
                    new ArchiveFolder(
                            RandomReadingFile.getPathFromURL(filename)),
                    new HTMLTextParser(),
                    true);
         }

        throw new BookException("Unsupported file format.");
    }
View Full Code Here

TOP

Related Classes of org.albite.book.model.parser.HTMLTextParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.