danielandross
Erfahrenes Mitglied
Code:
FileOutputStream fos;
try {
fos = new FileOutputStream("RunApp.properties");
properties.save(fos,"");
fos.close();
return true;
} catch (FileNotFoundException e) {
System.err.println("RunApp.properties konnte nicht gefunden werden");
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}