Utilizzando un file di properties in formato CHIAVE=VALORE è possibile leggere a runtime gli elementi presenti in questo modo
Properties p=new Properties();
p.load(new FileInputStream(new File("log.properties")));
Set<Entry<Object, Object>> s=p.entrySet();
Iterator<Entry<Object,Object>> it= s.iterator();
while(it.hasNext()){
Entry<Object,Object> e=it.next();
String chiave=(String)e.getKey();
String valore=(String)e.getValue();
System.out.println("Chiave: "+chiave);
System.out.println("Valore: "+ valore);
}
Nessun commento:
Posta un commento