ok, so i signed my applet, and it has this code in it:
try{
DataOutputStream file=new DataOutputStream(new BufferedOutputStream(
new FileOutputStream(new File("file.txt"))));
file.writeBytes("hello file");
file.flush();
file.close();
} catch(IOException exp){}
which is supposed to test how well i signed the jar. It does not show any exceptions but the file is not written.
Is the file supposed to be written inside the JAR or in its derictory. I checked every part of my JAR and the file isnt there. ???