Re: Use of properties class



Hi Franco ;


String fileName="wscnt.properties";
FileInputStream fis = new FileInputStream(fileName);
Properties prop=new Properties();
prop.load(fis);
fis.close();
prop.setProperty("contatore","0000101");
FileOutputStream fos = new FileOutputStream(fileName);
prop.store(fos,"");
fos.close();

try it it will solve ur problem

.