e1.printStackTrace();
} 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) {
}