Hello
I have a signed applet and I still cant access the local file system with File.exists. The code is stumble-stupid:
File f = new File("someLocal Path");
if (f.exists) {...}
The cert is is stored in the Java Console. What more do I have to do? Also what is the best way, after asking nicely, to store personalized data on a browsers local file system from an applet:just establish some path for the users data? Cant use user.home so is it just ad hoc? Any help appreciated. I am really stuck.
I have a signed applet and I still cant access the local file system with File.exists. The code is stumble-stupid:
File f = new File("someLocal Path");
if (f.exists) {...}
The cert is is stored in the Java Console. What more do I have to do? Also what is the best way, after asking nicely, to store personalized data on a browsers local file system from an applet:just establish some path for the users data? Cant use user.home so is it just ad hoc? Any help appreciated. I am really stuck.
Comment