正在使用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?
}
}