public static void main(String[] args) {
File photofile = new File(FileFolder);
FileOutputStream fout1 = new FileOutputStream(photofile);
fout1.write(photobytes);
fout1.flush();
fout1.close();
}
}
can anybody please help me how to read this config.properties through web.xml or from java code or any means.
thanks in advance