EPUB File Viewer via Java

View EPUB documents. Use Aspose.PDF for Java to modify EPUB files programmatically

How to view EPUB files Using Java Library

In order to view EPUB, we’ll use Aspose.PDF for Java API which is a feature-rich, powerful and easy to use conversion API for Java platform. You can download its latest version directly from Maven and install it within your Maven-based project by adding the following configurations to the pom.xml.

Repository

<repository>
    <id>AsposeJavaAPI</id>
    <name>Aspose Java AP</name>
    <url>https://releases.aspose.com/java/repo/</url>
</repository>

Dependency

<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-pdf</artifactId>
<version>version of aspose-pdf API</version>
</dependency>

View EPUB files via Java


You need Aspose.PDF for Java to try the code in your environment.

  1. Load the EPUB with an instance of Document.
  2. View resultant File.

Java - example code to view EPUB file

This sample code shows how to view EPUB files

    // load EPUB with an instance of Document
    var document = new Document("template.epub", new EpubLoadOptions());

    // save document in HTML format
    document.save("output.html", Aspose.Pdf.SaveFormat.Html);