making ePub with Java API

2019-03-29 02:17发布

I'm relatively new to ePub format, but if I understand well, to make programmatically an ePub starting from XHTML or PDF content could mean:

  • choose HTML or XHTML content and validate them with an XHTML validator (or clean them with Tydy)
  • choose PDF file to insert in the ePub
  • create the XML manifest or XML packing files and TOC file
  • zip the whole files in a .epub file
  • validate the ePub (I saw something in Google code)

So my question is if there is some sort of high level Java API to do these steps. Sure I can use API for ZIP, XML in Java, but does it exist higher tools?

thanks a lot

------ EDIT -------

I've developed an open source project to do that!

http://scribaebookmake.sourceforge.net/

标签: java api epub
3条回答
混吃等死
2楼-- · 2019-03-29 02:34

The following is a shameless plug for a project that I've been working on myself. It is basically EPUB tooling written in Java, for Eclipse. It comes with an API, UI and an Ant task that allows you to do pretty much everything. See http://help.eclipse.org/kepler/topic/org.eclipse.mylyn.docs.epub.help/help/introduction.html

查看更多
ゆ 、 Hurt°
3楼-- · 2019-03-29 02:39

You should take a look at this project which seemed to be converting PDF to epub.

查看更多
贪生不怕死
4楼-- · 2019-03-29 02:52

I haven't seen a java epub toolchain; however, I have been having good success with Sigil.

If the goal is to make an epub, I'd give Sigil a go. Before I used it I was rolling my epubs by hand (with the automation of an ant build.xml).

If the goal is to make a java based epub toolchain, then it shouldn't be terribly hard, depending on how much validation and pipelining you wish to do. Personally, I'd start with writing an epub viewer.

As far as the PDF parts go, I just embed XHTML. Haven't had a need for embedding PDF yet. As far as epub validation goes, if all the xml is valid and there's no dangling links prior to zipping, you're going to have a valid epub.

查看更多
登录 后发表回答