Apr 26, 2001 #1 rswarup Programmer Apr 26, 2001 2 IN how should i write an applet that accesses the files of the person who runs it ? the applet should have all file access and write facilities.
how should i write an applet that accesses the files of the person who runs it ? the applet should have all file access and write facilities.
May 3, 2001 #2 Cagliostro Programmer Sep 13, 2000 4,226 GB An applet will not be allowed to do it usually. John Fill ivfmd@mail.md Upvote 0 Downvote
May 3, 2001 #3 pipk Programmer Feb 20, 2001 455 GB You can't. An applet can only operate within a browser (usually) and has no access rights to native files. Try using a normal application instead Upvote 0 Downvote
You can't. An applet can only operate within a browser (usually) and has no access rights to native files. Try using a normal application instead
Nov 11, 2001 #4 llucifer Programmer Apr 30, 2001 20 DE You need to sign the code of your applet and request an appropriate FilePermission at runtime. Have a look at: http://java.sun.com/docs/books/tutorial/security1.2/index.html Upvote 0 Downvote
You need to sign the code of your applet and request an appropriate FilePermission at runtime. Have a look at: http://java.sun.com/docs/books/tutorial/security1.2/index.html