Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 epublib jar 文件在我的 android 应用程序中阅读 epub 电子书。我希望用户能够搜索电子书内容。我发现有一个搜索包:nl.siegmann.epublib.search。我从这里找到的。如何使用 epublib 中的搜索功能?非常感谢您的帮助。
看看SearchIndex.java:
SearchIndex.java
Book your_book = ...; String your_search_word = "abc"; SearchIndex si = new SearchIndex(your_book); SearchResults sr = si.doSearch(your_search_word); // parse sr as needed