Java的EPUB类库 Epublib
- 授权协议: LGPL
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://www.siegmann.nl/epublib
- 软件文档: http://www.siegmann.nl/epublib/getting-started
软件介绍
Epublib 是一个用来读写 epub 电子图书格式文件的 Java 类库。
示例代码:
// read epub
EpubReader epubReader = new EpubReader();
Book book = epubReader.readEpub(new FileInputStream("mybook.epub"));
// set title
book.getMetadata().setTitles(new ArrayList<String>() {{ add("an awesome book");}});
// write epub
EpubWriter epubWriter = new EpubWriter();
epubWriter.write(book, new FileOutputStream("mynewbook.epub"));
The Lean Startup
Eric Ries / Crown Business / 2011-9-13 / USD 26.00
更多中文介绍:http://huing.com Most startups fail. But many of those failures are preventable. The Lean Startup is a new approach being adopted across the globe, chan ging the way companies are built and ......一起来看看 《The Lean Startup》 这本书的介绍吧!
