Current Directory ? How?
I finally got the applet sign and got the certification to work... thanks to ncoleman1.
As my java code consists of :-
ip = new FileReader("clue.txt");
run together with a java.policy stored in c:\windows and certification ask for permission to grant/deny but consists of error message java.io.FileNotFoundException:clue.txt (The system cannot find the file specified)
--But--
ip = new FileReader("c:\\windows\\desktop\\test\\clue.txt");
the applet can run and display the data in clue.txt on the screen and I think it bypass the certification as it didn't ask for permission to grant / deny as I always select "grant this session only".
I just want the applets to run and look the file in the current directory where the html is stored. As I always stored all files in one directory.
Can help?

