Examples of EpubReader


Examples of nl.siegmann.epublib.epub.EpubReader

   
    Book book;
    if("chm".equals(type)) {
      book = ChmParser.parseChm(VFSUtil.resolveFileObject(inputLocation), inputEncoding);
    } else if ("epub".equals(type)) {
      book = new EpubReader().readEpub(VFSUtil.resolveInputStream(inputLocation), inputEncoding);
    } else {
      book = FilesetBookCreator.createBookFromDirectory(VFSUtil.resolveFileObject(inputLocation), inputEncoding);
    }
   
    if(StringUtils.isNotBlank(coverImage)) {
View Full Code Here

Examples of nl.siegmann.epublib.epub.EpubReader

 
  public Viewer(InputStream bookStream) {
    mainWindow = createMainWindow();
    Book book;
    try {
      book = (new EpubReader()).readEpub(bookStream);
      gotoBook(book);
    } catch (IOException e) {
      log.error(e.getMessage(), e);
    }
  }
View Full Code Here

Examples of nl.siegmann.epublib.epub.EpubReader

        }
        if (! selectedFile.isDirectory()) {
          previousDir = selectedFile.getParentFile();
        }
        try {
          Book book = (new EpubReader()).readEpub(new FileInputStream(selectedFile));
          gotoBook(book);
        } catch (Exception e1) {
          log.error(e1.getMessage(), e1);
        }
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.