Hi guys,
i've an easy question for you. I've a jsf application, when i click on a button a method starts that creates a temporary file, run an applet that loads this file and when the applet ends the temporary file has to be deleted.
What is my problem?
I've tried to create the temporary file with
String y="good";
File w=File.createTempFile("giu",".txt");
BufferedWriter b;
b = new BufferedWriter(new FileWriter(w));
b.write(y);
i've searched a giu.txt file but it doesn't exists!!!
Please help me to understand where is my error,thanks