Norma file to give Files permision to Applet
Hello,
I have a applet located on index.html : http://localhost:8080/CajaBurgos/
I need the applet can write,read,delete files on my local PC, so I created a Norma.java.policy looks like:
///////////////////////////////////////////////////////////////////////////////////////////////////
grant codeBase "http://localhost:8080/CajaBurgos/" {
permission java.io.FilePermission "<<ALL FILES>>", "read, read, write, delete, execute";
};
But the applet fail and it tells (access denied io.) so what is going wrong?

