- Gestione di sezioni multiple
- Gestione di espressioni
- Lettura/scrittura del registro di Windows, senza dover utilizzare codice nativo (JNI)
- Supporto del .REG file format
Vediamo un semplice esempio:
[happy]
age = 99
height = 77.66
homeDir = /home/happy
//lettura
age = 99
height = 77.66
homeDir = /home/happy
//lettura
Wini ini = new Wini(new File(filename));
int age = ini.get("happy", "age", int.class);
double height = ini.get("happy", "height", double.class);
String dir = ini.get("happy", "homeDir");
int age = ini.get("happy", "age", int.class);
double height = ini.get("happy", "height", double.class);
String dir = ini.get("happy", "homeDir");
//scrittura
Wini ini = new Wini(new File(filename));
ini.put("sleepy", "age", 55);
ini.put("sleepy", "weight", 45.6);
ini.store();
ini.put("sleepy", "age", 55);
ini.put("sleepy", "weight", 45.6);
ini.store();
dopo la scrittura avremo:
[sleepy]
age = 55
weight = 45.6
Nessun commento:
Posta un commento