How to access filesystem in Java 1.6
Hi
I have a signed JApplet running just fine, accessing various places on my harddrive to read and write files, with Java 1.5.x. But this morning my Java version upgraded to Java 1.6 and this functionality has stopped working. I get the :
java.security.AccessControlException: access denied (.....) exception.
Is this a bug or? i have tried this simple test to see if i have access to "my documents" but that don't work either :
JFileChooser fileChooser = new JFileChooser("");
if(fileChooser.showOpenDialog(getApplet()) == FileChooser.APPROVE_OPTION){ }
I'm amazed that i can't find any solutions via. google!
Any ideas?
/Michael

