Android EPUBLIB 读取/加载内容
我正在 Android 上玩 http://www.siegmann.nl/epublib 。 正确方法
- 有人可以解释一下阅读 epub HTML 内容的
- 、如何在 Android 上显示此内容(使用 WebView?)、
- 如何将内容拆分为页面以及
- 如何搜索内容。
谢谢 10 倍。
I'm playing with http://www.siegmann.nl/epublib on Android. Can someone please explain the right way to
- read epub HTML content,
- how to show this on Android (using WebView?),
- how to split content into pages and
- how to search the content.
Thx 10x.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
答案#2:
Answers #2:
关于您的问题:
How to read epub HTML content
我不确定您的意思。您想要所有内容吗?或者具体的事情?
所有内容都可以使用
Book.getContent()
检索。如何在 Android 上显示此内容(使用 WebView?),
我将使用
WebView
来实现此目的。不过我自己还没有尝试过。如何将内容拆分为页面
这我不知道什么最有效。
如何搜索内容。
epublib-tools 中的
nl.siegmann.epublib.search
包包含简单搜索功能的代码。Regarding your questions:
How to read epub HTML content
I'm not sure what you mean. Do you want all the content? Or something specific?
All the content can be retrieved using
Book.getContent()
.how to show this on Android (using WebView?),
I would use
WebView
for this. Haven't tried that myself though.how to split content into pages
This I don't know what would work best.
how to search the content.
The
nl.siegmann.epublib.search
package in epublib-tools has code for a simple search functionality.