Epub Reader Api
Epub Reader Api
This api developed specially for Blackberry,J2me,Android,J2se .
It is lite weight api that read .epub files and store all data in vector so you can use it in J2me and Blackberry platform.
Download from Here
Example :
public class Main { public static void main(String args[]) { Epub epub = new Epub(); Book book = epub.getBook(Main.class.getResourceAsStream("omte.epub")); System.out.println("Book Title :"+book.getTitle()); } }
This is simple java example.
You can also download blackberry example from Here