如何获取有关Java for Android的fb2书籍的信息?

时间:2014-10-09 16:43:53

标签: java android fb2

正在使用Android应用程序中的文件功能添加书籍。

我想从 .fb2 文件中弹出封面(作为PNG),作者姓名,标题和文字内容。

我如何通过Java for Android做到这一点?

有一个代码:

public class Book {
    private String title;
    private String text;
    private String author;
    private Image cover;

    public Book(String path) throws FileNotFoundException {
        File bookFile = new File(path);
        if (!bookFile.isFile()) {
            throw new FileNotFoundException();
        }
        //what i have to do there?
    }
}

0 个答案:

没有答案