ePub library for java or android

前端 未结 3 1240
天命终不由人
天命终不由人 2020-12-04 12:40

Is there any library to read ePub format? I found ePublib in http://github.com/psiegman/epublib. I\'m still learning how to use it.

Is there ePub jar which works for

3条回答
  •  爱一瞬间的悲伤
    2020-12-04 13:04

    You can use Folio Reader for this purpose. To use , add this to gradle:

    compile 'com.folioreader:folioreader:0.2.5'
    

    And if you have the .epub file in assets folder, you can load the file as :

    Intent intent = new Intent(HomeActivity.this, FolioActivity.class);
    intent.putExtra(FolioActivity.INTENT_EPUB_SOURCE_TYPE, FolioActivity.EpubSourceType.ASSESTS);
    intent.putExtra(FolioActivity.INTENT_EPUB_SOURCE_PATH, "epub/The Silver Chair.epub");
    startActivity(intent);
    

    The library and sample is available [here].

    The other available alternatives are:

    • Readium
    • epub3reader
    • android ePub Library

提交回复
热议问题