从 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?
}
}