try {
File txt = dlg.getSelectedFile();
TxtParser parser = new TxtParser(txt);
ArrayList<MkbItem> list = parser.read();
DirectoryMKB10 dir = (DirectoryMKB10) DirectoryLocator.getDirectory(DirectoryMKB10.class, false);
dir.updateTitle(list);
MessageBox.showInfo("Обновление прошло удачно");
} catch (FileNotFoundException ex) {
MessageBox.showExceptionOnly(ex);
} catch (IOException ex) {
MessageBox.showExceptionOnly(ex);