@Override
public Document readDocument(String lang1, String lang2, File file) throws IOException {
Document document = new Document();
try {
Fb2Text parser = new Fb2Text();
parser.parse(file);
String text = parser.getText();
if (text != null) {
int size = text.length();
String[] lines = text.split("\n");