1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| public static void main(String[] args){
Properties properties = new Properties();
File fichier = new File("services.xml");
charger(properties, fichier);
properties.put("google", "www.google.fr");
String adresseGoogle = properties.get("google");
sauver(properties, fichier);
}
public static void sauver(Properties properties, File fichier) {
try {
properties.storeToXML(new FileOutputStream(fichier), null);
}
catch (FileNotFoundException e) {
e.printStackTrace();
}
catch (IOException e) {
e.printStackTrace();
}
}
public static void charger(Properties properties, File fichier) {
try {
properties.loadFromXML(new FileInputStream(fichier));
}
catch (InvalidPropertiesFormatException e) {
e.printStackTrace();
}
catch (FileNotFoundException e) {
e.printStackTrace();
}
catch (IOException e) {
e.printStackTrace();
}
} |
Partager