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"));
Programming From The Ground Up
Jonathan Bartlett / Bartlett Publishing / 2004-07-31 / USD 34.95
Programming from the Ground Up is an introduction to programming using assembly language on the Linux platform for x86 machines. It is a great book for novices who are just learning to program as wel......一起来看看 《Programming From The Ground Up》 这本书的介绍吧!