我在Android上玩http://www.siegmann.nl/epublib。有人可以解释正确的方式
Thx 10x。
答案 0 :(得分:5)
关于你的问题:
我不确定你的意思。你想要所有的内容吗?或具体的东西?
可以使用Book.getContent()
检索所有内容。
我会使用WebView
。我自己没试过。
我不知道哪种方法效果最好。
epublib-tools中的nl.siegmann.epublib.search
包具有简单搜索功能的代码。
答案 1 :(得分:5)
答案#2:
protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.epub_reader);
webView = (WebView) findViewById(R.id.webview);
Book book = (new EpubReader()).readEpub(new FileInputStream(filename);
String baseUrl="file://mnt/sdcard/epub/OEBPS/"
String data = new String(book.getContents().get(2).getData());
webView.loadDataWithBaseURL(baseUrl, data, "text/html", "UTF-8", null);
}