file.openForRead(file_id);
checkFormatVersion(file.getFileVersion());
MagicNumberInputStream in = file.getIn();
showProgress(in);
try {
model.readDataFrom(in);
ret = true;
while (in.read() >= 0)
;
} catch (Exception ex) {
DialogManager.error("FormatUngueltig");
}