本文整理汇总了Java中nl.siegmann.epublib.epub.EpubReader.readEpubLazy方法的典型用法代码示例。如果您正苦于以下问题:Java EpubReader.readEpubLazy方法的具体用法?Java EpubReader.readEpubLazy怎么用?Java EpubReader.readEpubLazy使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nl.siegmann.epublib.epub.EpubReader
的用法示例。
在下文中一共展示了EpubReader.readEpubLazy方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: importBook
import nl.siegmann.epublib.epub.EpubReader; //导入方法依赖的package包/类
private boolean importBook(File file) {
if (! libraryService.hasBook(file.getName() ) ) {
try {
String fileName = file.getAbsolutePath();
// read epub file
EpubReader epubReader = new EpubReader();
Book importedBook = epubReader.readEpubLazy(fileName, "UTF-8",
Arrays.asList(MediatypeService.mediatypes));
libraryService.storeBook(fileName, importedBook, false, this.copyToLibrary);
return true;
} catch (Exception io ) {
if ( ! isCancelled() ) {
errors.add( file + ": " + io.getMessage() );
LOG.error("Error while reading book: " + file, io);
} else {
LOG.info("Ignoring error since we were cancelled", io );
}
}
}
return false;
}
示例2: initBook
import nl.siegmann.epublib.epub.EpubReader; //导入方法依赖的package包/类
public Book initBook(String fileName) throws IOException {
if (fileName == null) {
throw new IOException("No file-name specified.");
}
if ( hasCachedBook( fileName ) ) {
LOG.debug("Returning cached Book for fileName " + currentFile );
return currentBook;
}
closeCurrentBook();
this.anchors = new HashMap<>();
// read epub file
EpubReader epubReader = new EpubReader();
Book newBook = epubReader.readEpubLazy(fileName, "UTF-8");
this.currentBook = newBook;
this.currentFile = fileName;
return newBook;
}