} catch (UnsupportedLookAndFeelException e1) {
e1.printStackTrace();
}
Settings settings = null;
Record record = null;
try {
FileInputStream fileinput = new FileInputStream(CLIENT_DATA_URL + "settings.dat");
ObjectInputStream input = new ObjectInputStream(fileinput);
settings = (Settings) input.readObject();
input.close();
} catch (FileNotFoundException e) {
settings = new Settings();
} catch (IOException e) {
} catch (ClassNotFoundException e) {
}
try {
ObjectInputStream objectinput = new ObjectInputStream(new FileInputStream(CLIENT_DATA_URL + "records.dat"));
record = (Record) objectinput.readObject();
objectinput.close();
} catch (FileNotFoundException e) {
record = new Record();
} catch (IOException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();